mirror of https://github.com/stella-emu/stella.git
Fixed minor compile warnings with gcc 7.
This commit is contained in:
parent
162f7b7501
commit
c79d86d6a6
|
@ -164,7 +164,7 @@ void RadioButtonWidget::drawWidget(bool hilite)
|
||||||
|
|
||||||
// Draw the inner bounding circle with enabled color
|
// Draw the inner bounding circle with enabled color
|
||||||
s.drawBitmap(radio_img_innercircle, _x + 1, _y + _boxY + 1, isEnabled()
|
s.drawBitmap(radio_img_innercircle, _x + 1, _y + _boxY + 1, isEnabled()
|
||||||
? _bgcolor : kColor, 12, 12);
|
? _bgcolor : uInt32(kColor), 12, 12);
|
||||||
|
|
||||||
// draw state
|
// draw state
|
||||||
if(_state)
|
if(_state)
|
||||||
|
|
|
@ -621,8 +621,8 @@ void CheckboxWidget::drawWidget(bool hilite)
|
||||||
if(_drawBox)
|
if(_drawBox)
|
||||||
s.frameRect(_x, _y + _boxY, 14, 14, hilite && isEnabled() && isEditable() ? kWidColorHi : kColor);
|
s.frameRect(_x, _y + _boxY, 14, 14, hilite && isEnabled() && isEditable() ? kWidColorHi : kColor);
|
||||||
// Do we draw a square or cross?
|
// Do we draw a square or cross?
|
||||||
s.fillRect(_x + 1, _y + _boxY + 1, 12, 12, _changed ? kDbgChangedColor
|
s.fillRect(_x + 1, _y + _boxY + 1, 12, 12, _changed ? uInt32(kDbgChangedColor)
|
||||||
: isEnabled() ? _bgcolor : kColor);
|
: isEnabled() ? _bgcolor : uInt32(kColor));
|
||||||
if(_state)
|
if(_state)
|
||||||
s.drawBitmap(_img, _x + 2, _y + _boxY + 2, isEnabled() ? hilite && isEditable() ? kWidColorHi : kCheckColor
|
s.drawBitmap(_img, _x + 2, _y + _boxY + 2, isEnabled() ? hilite && isEditable() ? kWidColorHi : kCheckColor
|
||||||
: kColor, 10);
|
: kColor, 10);
|
||||||
|
|
Loading…
Reference in New Issue