From 1b3044f81f4c51d1133ecf0e2a269900667e1668 Mon Sep 17 00:00:00 2001 From: Chris Gomez Date: Tue, 4 Feb 2003 01:38:38 +0000 Subject: [PATCH] Fix any song with beginner steps being marked easy --- stepmania/src/Song.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 74a5d8e0d6..fa258180ff 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -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; }