From 1e74ef9c2807e8ff7cf7ca9fdd1d50866e86d195 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 15 Feb 2003 04:35:18 +0000 Subject: [PATCH] fix only 10-foot songs being marked easy --- stepmania/src/Song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 45b2d0643e..2a03c3cb17 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -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 )