mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
TITANIC: gcc compilation fix
This commit is contained in:
parent
4bad949717
commit
9c5f3c305a
@ -157,7 +157,7 @@ void CContinueSaveDialog::renderButtons() {
|
||||
}
|
||||
|
||||
void CContinueSaveDialog::renderSlots() {
|
||||
for (uint idx = 0; idx < _saves.size(); ++idx) {
|
||||
for (int idx = 0; idx < (int)_saves.size(); ++idx) {
|
||||
byte rgb = (_highlightedSlot == idx) ? 255 : 0;
|
||||
_slotNames[idx].setColor(rgb, rgb, rgb);
|
||||
_slotNames[idx].setLineColor(0, rgb, rgb, rgb);
|
||||
|
Loading…
Reference in New Issue
Block a user