- Fixed: GCC warnings.
SVN r2843 (trunk)
This commit is contained in:
parent
1e83634089
commit
15d74dab56
9 changed files with 16 additions and 15 deletions
|
|
@ -604,7 +604,7 @@ void DLoadSaveMenu::Drawer ()
|
|||
{
|
||||
color = CR_ORANGE;
|
||||
}
|
||||
else if (j == Selected)
|
||||
else if (j == static_cast<unsigned int> (Selected))
|
||||
{
|
||||
color = CR_WHITE;
|
||||
}
|
||||
|
|
@ -612,7 +612,7 @@ void DLoadSaveMenu::Drawer ()
|
|||
{
|
||||
color = CR_TAN;
|
||||
}
|
||||
if (j == Selected)
|
||||
if (j == static_cast<unsigned int> (Selected))
|
||||
{
|
||||
screen->Clear (listboxLeft, listboxTop+rowHeight*i,
|
||||
listboxRight, listboxTop+rowHeight*(i+1), -1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue