If BegginerHelper is in use, kill the DancingCharacters instance

This commit is contained in:
Kevin Slaughter
2003-08-20 09:54:26 +00:00
parent cbdc6565f6
commit 84cdf90be6
+5
View File
@@ -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; pc<NUM_PLAYERS; pc++ )
if( GAMESTATE->m_PreferredDifficulty[pc] == DIFFICULTY_BEGINNER )
m_pDancingCharacters = NULL;
}
Background::~Background()