Fix any song with beginner steps being marked easy

This commit is contained in:
Chris Gomez
2003-02-04 01:38:38 +00:00
parent 7784f83909
commit 1b3044f81f
+2
View File
@@ -957,6 +957,8 @@ bool Song::IsEasy( NotesType nt ) const
Notes* pNotes = m_apNotes[i];
if( pNotes->m_NotesType != nt )
continue;
if( pNotes->GetDifficulty() == DIFFICULTY_BEGINNER )
continue; // ignore beginner steps for marking songs easy; very bizarre to see the beginner mark by Legend of MAX
if( pNotes->GetMeter() <= 2 )
return true;
}