fix only 10-foot songs being marked easy

This commit is contained in:
Glenn Maynard
2003-02-15 04:35:18 +00:00
parent f4ddba38b5
commit 1e74ef9c28
+1 -1
View File
@@ -833,7 +833,7 @@ bool Song::IsEasy( NotesType nt ) const
Notes* pHardNotes = GetNotes( nt, DIFFICULTY_HARD );
// HACK: Looks bizarre to see the easy mark by Legend of MAX.
if( pHardNotes && pHardNotes->GetMeter()<=9 )
if( pHardNotes && pHardNotes->GetMeter() > 9 )
return false;
if( pBeginnerNotes && pBeginnerNotes->GetMeter()==1 )