fix stage counts in event mode

This commit is contained in:
Glenn Maynard
2003-02-14 08:15:42 +00:00
parent ff38961907
commit 8adf5ae456
+2
View File
@@ -128,6 +128,8 @@ int GameState::GetNumStagesLeft()
{
if(GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2())
return 1;
if(PREFSMAN->m_bEventMode)
return 999;
return PREFSMAN->m_iNumArcadeStages - m_iCurrentStageIndex;
}