compile fix

This commit is contained in:
Glenn Maynard
2004-02-02 05:49:18 +00:00
parent 3a8d433a72
commit 64e8edb165
+2 -2
View File
@@ -753,7 +753,7 @@ Song* SongManager::GetRandomSong()
if( m_pShuffledSongs.empty() )
return NULL;
static i = 0;
static int i = 0;
i++;
wrap( i, m_pShuffledSongs.size() );
@@ -765,7 +765,7 @@ Course* SongManager::GetRandomCourse()
if( m_pShuffledCourses.empty() )
return NULL;
static i = 0;
static int i = 0;
i++;
wrap( i, m_pShuffledCourses.size() );