fix Course::HasCourseDifficulty always returning true

This commit is contained in:
Glenn Maynard
2004-05-31 20:06:21 +00:00
parent a15ef652c3
commit a5e1bf6fbf
+1 -1
View File
@@ -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