From f15be3b3e5fb956d0026c200deaac126c63b4b5f Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 5 Jun 2005 09:45:30 +0000 Subject: [PATCH] re-add per-screen DifficultiesToShow --- stepmania/src/ScreenJukebox.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenJukebox.cpp b/stepmania/src/ScreenJukebox.cpp index 98cf90ba5f..9d7fbd0c95 100644 --- a/stepmania/src/ScreenJukebox.cpp +++ b/stepmania/src/ScreenJukebox.cpp @@ -25,7 +25,8 @@ REGISTER_SCREEN_CLASS( ScreenJukebox ); void ScreenJukebox::SetSong() { - ThemeMetric ALLOW_ADVANCED_MODIFIERS(m_sName,"AllowAdvancedModifiers"); + ThemeMetric ALLOW_ADVANCED_MODIFIERS(m_sName,"AllowAdvancedModifiers"); + ThemeMetricDifficultiesToShow DIFFICULTIES_TO_SHOW_HERE(m_sName,"DifficultiesToShow"); vector vSongs; @@ -48,7 +49,7 @@ void ScreenJukebox::SetSong() if( m_bDemonstration ) { // HACK: This belongs in ScreenDemonstration - vDifficultiesToShow = DIFFICULTIES_TO_SHOW.GetValue(); + vDifficultiesToShow = DIFFICULTIES_TO_SHOW_HERE.GetValue(); } else {