From a5e1bf6fbf5fb8dfb2aa03a423a2c0c92e30d6b2 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 31 May 2004 20:06:21 +0000 Subject: [PATCH] fix Course::HasCourseDifficulty always returning true --- stepmania/src/Course.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 702b67666d..b963a71124 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -502,7 +502,7 @@ bool Course::HasCourseDifficulty( StepsType st, CourseDifficulty cd ) const Trail *Regular = GetTrail( st, COURSE_DIFFICULTY_REGULAR ); Trail *Other = GetTrail( st, cd ); - return Regular != Other; + return Regular->m_vEntries != Other->m_vEntries; } bool Course::IsPlayableIn( StepsType st ) const