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) );