rearrange

This commit is contained in:
Glenn Maynard
2004-06-03 23:30:07 +00:00
parent 2856e3760b
commit 33a16651d6
+9 -9
View File
@@ -149,15 +149,6 @@ void DifficultyMeter::SetFromDifficulty( Difficulty dc )
SetDifficulty( DifficultyToString( dc ) );
}
void DifficultyMeter::SetFromCourseDifficulty( CourseDifficulty cd )
{
m_textFeet.SetEffectNone();
if( FEET_IS_DIFFICULTY_COLOR )
m_textFeet.SetDiffuse( RageColor(0.8f,0.8f,0.8f,1) );
SetFromMeterAndDifficulty( 0, DIFFICULTY_BEGINNER );
SetDifficulty( CourseDifficultyToString( cd ) );
}
void DifficultyMeter::SetFromGameState( PlayerNumber pn )
{
if( GAMESTATE->IsCourseMode() )
@@ -230,3 +221,12 @@ void DifficultyMeter::SetDifficulty( CString diff )
if( SHOW_METER )
COMMAND( m_textMeter, "Set" + Capitalize(diff) );
}
void DifficultyMeter::SetFromCourseDifficulty( CourseDifficulty cd )
{
m_textFeet.SetEffectNone();
if( FEET_IS_DIFFICULTY_COLOR )
m_textFeet.SetDiffuse( RageColor(0.8f,0.8f,0.8f,1) );
SetFromMeterAndDifficulty( 0, DIFFICULTY_BEGINNER );
SetDifficulty( CourseDifficultyToString( cd ) );
}