From 4311e8907259db8cc3a81dd10494882fcb573a67 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 22 Jul 2004 20:16:18 +0000 Subject: [PATCH] cleanup --- stepmania/src/Steps.cpp | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/stepmania/src/Steps.cpp b/stepmania/src/Steps.cpp index ef251a537e..9b8ad1cbb7 100644 --- a/stepmania/src/Steps.cpp +++ b/stepmania/src/Steps.cpp @@ -137,26 +137,7 @@ void Steps::TidyUpData() } if( GetMeter() < 1) // meter is invalid - { - // Why not just use PredictMeter() SetMeter( int(PredictMeter()) ); - /* - // guess meter from difficulty class - switch( GetDifficulty() ) - { - case DIFFICULTY_BEGINNER: SetMeter(1); break; - case DIFFICULTY_EASY: SetMeter(3); break; - case DIFFICULTY_MEDIUM: SetMeter(5); break; - case DIFFICULTY_HARD: SetMeter(8); break; - case DIFFICULTY_CHALLENGE: SetMeter(8); break; - case DIFFICULTY_INVALID: SetMeter(5); break; - default: ASSERT(0); - }*/ - } - - // Don't put garbage in the desciption. -// if( m_sDescription.empty() ) -// m_sDescription = Capitalize( DifficultyToString(m_Difficulty) ); } void Steps::Decompress() const