From 84cdf90be663351e11bbb268ef24462b9ab0e3d7 Mon Sep 17 00:00:00 2001 From: Kevin Slaughter Date: Wed, 20 Aug 2003 09:54:26 +0000 Subject: [PATCH] If BegginerHelper is in use, kill the DancingCharacters instance --- stepmania/src/Background.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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()