diff --git a/stepmania/src/Background.cpp b/stepmania/src/Background.cpp index 286ebed90c..9144aaa88f 100644 --- a/stepmania/src/Background.cpp +++ b/stepmania/src/Background.cpp @@ -72,6 +72,11 @@ Background::Background() m_pDancingCharacters = new DancingCharacters; else m_pDancingCharacters = NULL; + + if( PREFSMAN->m_bShowBeginnerHelper ) //Disable dancing characters if BH will be showing. + for( int pc=0; pcm_PreferredDifficulty[pc] == DIFFICULTY_BEGINNER ) + m_pDancingCharacters = NULL; } Background::~Background()