This commit is contained in:
Glenn Maynard
2007-04-25 00:30:30 +00:00
parent 450ed7120b
commit d88d9388f8
5 changed files with 9 additions and 14 deletions
+2 -3
View File
@@ -127,7 +127,7 @@ void MusicWheel::BeginScreen()
WheelBase::BeginScreen();
if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() )
if( GAMESTATE->IsAnExtraStage() )
{
m_WheelState = STATE_LOCKED;
SCREENMAN->PlayStartSound();
@@ -344,8 +344,7 @@ void MusicWheel::GetSongList( vector<Song*> &arraySongs, SortOrder so, const RSt
Song* pSong = apAllSongs[i];
/* If we're on an extra stage, and this song is selected, ignore #SELECTABLE. */
if( pSong != GAMESTATE->m_pCurSong ||
(!GAMESTATE->IsExtraStage() && !GAMESTATE->IsExtraStage2()) )
if( pSong != GAMESTATE->m_pCurSong || !GAMESTATE->IsAnExtraStage() )
{
/* Hide songs that asked to be hidden via #SELECTABLE. */
if( !pSong->NormallyDisplayed() )