From ea7be60566f4c81eab80c2fdde1c09c21effe493 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 15 Feb 2003 08:08:36 +0000 Subject: [PATCH] make the instructions screen show for beginner --- stepmania/src/ScreenInstructions.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/ScreenInstructions.cpp b/stepmania/src/ScreenInstructions.cpp index d52cf4467b..d02fb2f14e 100644 --- a/stepmania/src/ScreenInstructions.cpp +++ b/stepmania/src/ScreenInstructions.cpp @@ -50,16 +50,16 @@ ScreenInstructions::ScreenInstructions() } // - // Skip this screen unless someone chose easy + // Skip this screen unless someone chose easy or beginner // - Difficulty easiestDiffuclty = DIFFICULTY_HARD; + Difficulty easiestDifficulty = DIFFICULTY_HARD; for( int p=0; pIsPlayerEnabled(p) ) continue; - easiestDiffuclty = min( easiestDiffuclty, GAMESTATE->m_PreferredDifficulty[p] ); + easiestDifficulty = min( easiestDifficulty, GAMESTATE->m_PreferredDifficulty[p] ); } - if( easiestDiffuclty != DIFFICULTY_EASY ) + if( easiestDifficulty > DIFFICULTY_EASY ) { this->SendScreenMessage( SM_GoToNextScreen, 0 ); m_Menu.ImmedOffScreenToMenu();