use Played here, instead of Passed

This commit is contained in:
Glenn Maynard
2003-02-24 02:45:27 +00:00
parent c6ccc82b98
commit c541f11765
+1 -1
View File
@@ -208,7 +208,7 @@ int GameState::GetCourseSongIndex()
int iSongIndex = 0;
for( int p=0; p<NUM_PLAYERS; p++ )
if( IsPlayerEnabled(p) )
iSongIndex = max( iSongIndex, m_CurStageStats.iSongsPassed[p] );
iSongIndex = max( iSongIndex, m_CurStageStats.iSongsPlayed[p] );
return iSongIndex;
}