fix DifficultyMeter loading when playing a Course

This commit is contained in:
Chris Danford
2004-06-01 05:45:34 +00:00
parent 36def366c6
commit b138a83fcb
+5
View File
@@ -608,8 +608,11 @@ void ScreenGameplay::Init()
/* Position it in LoadNextSong. */ /* Position it in LoadNextSong. */
this->AddChild( &m_DifficultyIcon[p] ); this->AddChild( &m_DifficultyIcon[p] );
// FIXME: Find a better way to handle this than changing the name
CString sName = m_DifficultyMeter[p].GetName();
m_DifficultyMeter[p].SetName( m_sName + ssprintf(" DifficultyMeterP%d",p+1) ); m_DifficultyMeter[p].SetName( m_sName + ssprintf(" DifficultyMeterP%d",p+1) );
m_DifficultyMeter[p].Load(); m_DifficultyMeter[p].Load();
m_DifficultyMeter[p].SetName( sName );
/* Position it in LoadNextSong. */ /* Position it in LoadNextSong. */
this->AddChild( &m_DifficultyMeter[p] ); this->AddChild( &m_DifficultyMeter[p] );
} }
@@ -903,6 +906,8 @@ void ScreenGameplay::LoadNextSong()
} }
m_DifficultyIcon[p].SetFromSteps( p, GAMESTATE->m_pCurSteps[p] ); m_DifficultyIcon[p].SetFromSteps( p, GAMESTATE->m_pCurSteps[p] );
m_DifficultyMeter[p].SetName( m_sName + ssprintf(" DifficultyMeterP%d",p+1) );
m_DifficultyMeter[p].SetFromSteps( GAMESTATE->m_pCurSteps[p] ); m_DifficultyMeter[p].SetFromSteps( GAMESTATE->m_pCurSteps[p] );
/* The actual note data for scoring is the base class of Player. This includes /* The actual note data for scoring is the base class of Player. This includes