extra stage fixes

This commit is contained in:
Glenn Maynard
2003-07-07 19:19:16 +00:00
parent 5309e264e8
commit 6f82760d6d
2 changed files with 1 additions and 8 deletions
+1
View File
@@ -146,6 +146,7 @@ MusicWheel::MusicWheel()
{
GAMESTATE->m_pCurNotes[p] = pNotes;
GAMESTATE->m_PlayerOptions[p] = po;
GAMESTATE->m_PreferredDifficulty[p] = pNotes->GetDifficulty();
}
}
GAMESTATE->m_SongOptions = so;
-8
View File
@@ -776,14 +776,6 @@ void ScreenSelectMusic::SwitchToPreferredDifficulty()
if( !GAMESTATE->IsHumanPlayer( PlayerNumber(p) ) )
continue;
if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() )
{
/* Extra stage; just keep the difficulty selected by
* SongManager::GetExtraStageInfo. */
m_iSelection[p] = GAMESTATE->m_pCurNotes[p]->GetDifficulty();
continue;
}
/* Find the closest match to the user's preferred difficulty. */
int CurDifference = -1;
for( unsigned i=0; i<m_arrayNotes[p].size(); i++ )