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 -2
View File
@@ -74,8 +74,11 @@ ScreenSelectGroup::ScreenSelectGroup()
NotesType nt = GAMESTATE->GetCurrentStyleDef()->m_NotesType;
for( i=aAllSongs.GetSize()-1; i>=0; i-- ) // foreach Song, back to front
{
if( !aAllSongs[i]->SongHasNotesType(nt) )
aAllSongs.RemoveAt( i );
if( aAllSongs[i]->SongHasNotesType(nt) &&
aAllSongs[i]->NormallyDisplayed() )
continue;
aAllSongs.RemoveAt( i );
}
}