Add #SELECTABLE:YES, NO and ROULETTE.

Add an option for this.  It's off by default.
This commit is contained in:
Glenn Maynard
2002-08-30 04:28:12 +00:00
parent 92ccf96768
commit 441541a16c
6 changed files with 60 additions and 2 deletions
+5
View File
@@ -436,6 +436,11 @@ void MusicWheel::BuildWheelItemDatas( CArray<WheelItemData, WheelItemData&> &arr
{
Song* pSong = SONGMAN->m_pSongs[i];
if( !bRoulette && !pSong->NormallyDisplayed() )
continue;
if( bRoulette && !pSong->RouletteDisplayed() )
continue;
CArray<Notes*, Notes*> arraySteps;
pSong->GetNotesThatMatch( GAMESTATE->GetCurrentStyleDef()->m_NotesType, arraySteps );