fix IsFinalStage

This commit is contained in:
Glenn Maynard
2004-01-22 23:36:26 +00:00
parent b3ede49d29
commit f9a90cd361
+1 -2
View File
@@ -480,8 +480,7 @@ bool GameState::IsFinalStage() const
int iPredictedStageForCurSong = 1;
if( m_pCurSong != NULL )
iPredictedStageForCurSong = SongManager::GetNumStagesForSong( m_pCurSong );
return m_iCurrentStageIndex + m_iCurrentStageIndex == PREFSMAN->m_iNumArcadeStages;
return m_iCurrentStageIndex + iPredictedStageForCurSong == PREFSMAN->m_iNumArcadeStages;
}
bool GameState::IsExtraStage() const