From 133530525fe624fa352e654cce48ba8b7a40cfb5 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 15 Aug 2005 16:03:46 +0000 Subject: [PATCH] don't report when an entry uses DIFFICULTY_MEDIUM. That's the default. --- stepmania/src/Course.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index b563144463..feeb680950 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -67,7 +67,7 @@ CString CourseEntry::GetTextDescription() const vsEntryDescription.push_back( "Random" ); if( !sSongGroup.empty() ) vsEntryDescription.push_back( sSongGroup ); - if( baseDifficulty != DIFFICULTY_INVALID ) + if( baseDifficulty != DIFFICULTY_INVALID && baseDifficulty != DIFFICULTY_MEDIUM ) vsEntryDescription.push_back( DifficultyToThemedString(baseDifficulty) ); if( iLowMeter != -1 ) vsEntryDescription.push_back( ssprintf("Low meter: %d", iLowMeter) );