From daa516eccb47b34c5b60b749814827001a6619fe Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 21 Feb 2004 01:11:41 +0000 Subject: [PATCH] #SELECTABLE:NO songs are special-use, eg. special course mixes. Never show them in the jukebox or demonstration. --- stepmania/src/ScreenJukebox.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/ScreenJukebox.cpp b/stepmania/src/ScreenJukebox.cpp index 1b5349f0aa..d1fc361914 100644 --- a/stepmania/src/ScreenJukebox.cpp +++ b/stepmania/src/ScreenJukebox.cpp @@ -46,6 +46,9 @@ bool ScreenJukebox::SetSong() if( !pSong->HasMusic() ) continue; // skip + if( pSong->m_SelectionDisplay == Song::SHOW_NEVER ) + continue; // skip + Difficulty dc = GAMESTATE->m_PreferredDifficulty[PLAYER_1]; Steps* pNotes = NULL; if( dc != DIFFICULTY_INVALID )