Fix warnings.

This commit is contained in:
Steve Checkoway
2005-03-23 21:04:40 +00:00
parent fd86efc075
commit ae02033893
12 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -107,7 +107,7 @@ void ScreenTextEntry::Init()
// Init keyboard
FOREACH_KeyboardRow( r )
{
for( unsigned x=0; x<KEYS_PER_ROW; x++ )
for( int x=0; x<KEYS_PER_ROW; ++x )
{
BitmapText &bt = m_textKeyboardChars[r][x];
bt.LoadFromFont( THEME->GetPathF(m_sName,"keyboard") );
@@ -144,7 +144,7 @@ void ScreenTextEntry::UpdateKeyboardText()
{
FOREACH_KeyboardRow( r )
{
for( unsigned x=0; x<KEYS_PER_ROW; x++ )
for( int x=0; x<KEYS_PER_ROW; ++x )
{
const char *s = g_szKeys[r][x];
BitmapText &bt = m_textKeyboardChars[r][x];