From 092a55d6f6ce027eb7eaae5b23be74153ccb9488 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 27 Jun 2005 05:24:31 +0000 Subject: [PATCH] fix no prompt for name entry if make high score then switch to rave --- stepmania/src/GameState.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index 653e60a0dc..abbef92569 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -1403,10 +1403,14 @@ void GameState::GetRankingFeats( PlayerNumber pn, vector &asFeatsOu Profile *pProf = PROFILEMAN->GetProfile(pn); + // Check for feats even if the PlayMode is rave or battle because the player may have + // made high scores then switched modes. CHECKPOINT_M(ssprintf("PlayMode %i",this->m_PlayMode)); switch( this->m_PlayMode ) { case PLAY_MODE_REGULAR: + case PLAY_MODE_BATTLE: + case PLAY_MODE_RAVE: { CHECKPOINT; @@ -1552,9 +1556,6 @@ void GameState::GetRankingFeats( PlayerNumber pn, vector &asFeatsOu } } break; - case PLAY_MODE_BATTLE: - case PLAY_MODE_RAVE: - break; case PLAY_MODE_NONSTOP: case PLAY_MODE_ONI: case PLAY_MODE_ENDLESS: