diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index efb0c55a23..b04e2163f9 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -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; }