From 0e75311fd017d6373a0cf7ff79c9608902997569 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 21 Mar 2004 18:59:55 +0000 Subject: [PATCH] fix "IsFinalStage" in doesn't return true in course modes --- stepmania/src/GameState.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index f2c8099b46..cdefaf19b8 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -548,6 +548,9 @@ bool GameState::IsFinalStage() const if( PREFSMAN->m_bEventMode ) return false; + if( this->IsCourseMode() ) + return true; + /* This changes dynamically on ScreenSelectMusic as the wheel turns. */ int iPredictedStageForCurSong = 1; if( m_pCurSong != NULL )