fix dancing characters not resetting between songs in a course

This commit is contained in:
Chris Danford
2003-08-23 19:58:46 +00:00
parent 00a107ad70
commit 4fd5ede6de
3 changed files with 15 additions and 2 deletions
+5
View File
@@ -69,7 +69,10 @@ Background::Background()
if( GAMESTATE->IsPlayerEnabled(p) )
bOneOrMoreChars = true;
if( bOneOrMoreChars )
{
m_pDancingCharacters = new DancingCharacters;
m_pDancingCharacters->LoadNextSong();
}
else
m_pDancingCharacters = NULL;
@@ -375,6 +378,8 @@ void Background::LoadFromSong( Song* pSong )
m_BGADanger.SetZoomY( fYZoom );
TEXTUREMAN->EnableOddDimensionWarning();
m_pDancingCharacters->LoadNextSong();
}