- Added a GTK+ version of the IWAD selection dialog box. That brings the

Linux port one step closer to feature parity with the Windows version.



SVN r451 (trunk)
This commit is contained in:
Randy Heit 2007-01-16 01:53:43 +00:00
commit c196880ee5
5 changed files with 204 additions and 8 deletions

View file

@ -1845,7 +1845,7 @@ EColorRange V_FindFontColor (FName name)
PalEntry V_LogColorFromColorRange (EColorRange range)
{
if (range < 0 || range >= TranslationColors.Size())
if ((unsigned int)range >= TranslationColors.Size())
{ // Return default color
return DEFAULT_LOG_COLOR;
}
@ -1947,4 +1947,4 @@ void V_InitFonts()
}
ConFont = new FSingleLumpFont ("ConsoleFont", Wads.GetNumForName ("CONFONT"));
V_InitCustomFonts ();
}
}