compile fix
This commit is contained in:
@@ -753,7 +753,7 @@ Song* SongManager::GetRandomSong()
|
|||||||
if( m_pShuffledSongs.empty() )
|
if( m_pShuffledSongs.empty() )
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
static i = 0;
|
static int i = 0;
|
||||||
i++;
|
i++;
|
||||||
wrap( i, m_pShuffledSongs.size() );
|
wrap( i, m_pShuffledSongs.size() );
|
||||||
|
|
||||||
@@ -765,7 +765,7 @@ Course* SongManager::GetRandomCourse()
|
|||||||
if( m_pShuffledCourses.empty() )
|
if( m_pShuffledCourses.empty() )
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
static i = 0;
|
static int i = 0;
|
||||||
i++;
|
i++;
|
||||||
wrap( i, m_pShuffledCourses.size() );
|
wrap( i, m_pShuffledCourses.size() );
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user