fix VC7 warnings

This commit is contained in:
Chris Danford
2004-11-08 06:16:22 +00:00
parent 2fc38be71c
commit ec4090a3eb
7 changed files with 21 additions and 30 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ bool ScreenJukebox::SetSong( bool bDemonstration )
//then we pick a song from this course.
Course * tCourse = SONGMAN->GetCourseFromName( THEME->GetCurThemeName() );
if( tCourse != NULL )
for ( int i = 0; i < tCourse->m_entries.size(); i++ )
for ( unsigned i = 0; i < tCourse->m_entries.size(); i++ )
vSongs.push_back( tCourse->m_entries[i].pSong );
if ( vSongs.size() == 0 )