From 78c2ef6fbfe94c78362f34f5171d8711dabf55c6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 18 Nov 2003 00:51:40 +0000 Subject: [PATCH] tweak --- stepmania/src/DifficultyMeter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/DifficultyMeter.cpp b/stepmania/src/DifficultyMeter.cpp index 2c4acf3186..b73a913155 100644 --- a/stepmania/src/DifficultyMeter.cpp +++ b/stepmania/src/DifficultyMeter.cpp @@ -119,15 +119,15 @@ void DifficultyMeter::SetFromCourse( const Course* pCourse ) const int meter = (int) roundf(pCourse->GetMeter()); - // XXX + // XXX metrics Difficulty FakeDifficulty; if( meter <= 1 ) FakeDifficulty = DIFFICULTY_BEGINNER; - else if( meter <= 2 ) + else if( meter <= 3 ) FakeDifficulty = DIFFICULTY_EASY; - else if( meter <= 5 ) + else if( meter <= 6 ) FakeDifficulty = DIFFICULTY_MEDIUM; - else if( meter <= 7 ) + else if( meter <= 9 ) FakeDifficulty = DIFFICULTY_HARD; else FakeDifficulty = DIFFICULTY_CHALLENGE;