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();