sm5svn 2527d15

This commit is contained in:
AJ Kelly
2011-03-13 12:30:22 -05:00
parent 5c23d2d1d8
commit b0398a3b4f
+6 -1
View File
@@ -772,13 +772,18 @@ void MusicWheel::UpdateWheelItemDatas( SortOrder so )
continue;
// Check that we have enough stages to play this song, and that it's not disabled.
if( !sc.Matches(WID.m_pSong) )
if( GAMESTATE->GetNumStagesMultiplierForSong(WID.m_pSong) )
{
aiRemove[i] = true;
continue;
}
int iLocked = UNLOCKMAN->SongIsLocked( pSong );
if( UNLOCKMAN->SongIsLocked(pSong) & LOCKED_DISABLED )
{
aiRemove[i] = true;
continue;
}
// If we're on an extra stage, and this song is selected, ignore #SELECTABLE.
if( pSong != GAMESTATE->m_pCurSong || !GAMESTATE->IsAnExtraStage() )