don't report when an entry uses DIFFICULTY_MEDIUM. That's the default.

This commit is contained in:
Chris Danford
2005-08-15 16:03:46 +00:00
parent c5d16a2ce8
commit 133530525f
+1 -1
View File
@@ -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) );