Fix compiler warnings.

This commit is contained in:
Steve Checkoway
2003-08-10 03:23:17 +00:00
parent 2a2bdb3cb5
commit 762afe38a4
9 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ void ScreenSongOptions::ImportOptions()
m_iSelectedOption[0][SO_AUTOSYNC] = so.m_bAutoSync;
m_iSelectedOption[0][SO_RATE] = 7; // in case we don't match below
for( int i=0; i<g_SongOptionsLines[SO_RATE].choices.size(); i++ )
for( unsigned i=0; i<g_SongOptionsLines[SO_RATE].choices.size(); i++ )
if( so.m_fMusicRate == atof(g_SongOptionsLines[SO_RATE].choices[i]) )
m_iSelectedOption[0][SO_RATE] = i;
}