From b755a68c277217aceaf70a086b9cb9a57c96d6f5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 17 Aug 2006 00:39:53 +0000 Subject: [PATCH] simplify (not a worthwhile optimization) --- stepmania/src/GameState.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index 900498df30..f9e7863090 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -758,10 +758,9 @@ bool GameState::IsStagePossible( Stage s ) const if( s == STAGE_FINAL && actual >= STAGE_1 && actual <= STAGE_FINAL ) { Stage max_actual = actual; - if( PREFSMAN->m_fMarathonVerSongSeconds < 9999 ) - enum_add( max_actual, +2 ); - else if( PREFSMAN->m_fLongVerSongSeconds < 9999 ) - enum_add( max_actual, +1 ); + + // For long/marathon songs: + enum_add( max_actual, +2 ); if( max_actual >= STAGE_FINAL ) return true;