From fdbedaee064364bb956be5428dea802568340b61 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Tue, 14 Jan 2014 21:15:58 -0600 Subject: [PATCH] Now how did I manage to forget that. --- src/Course.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Course.cpp b/src/Course.cpp index 4671d76bac..3231dbed94 100644 --- a/src/Course.cpp +++ b/src/Course.cpp @@ -633,7 +633,7 @@ bool Course::GetTrailUnsorted( StepsType st, CourseDifficulty cd, Trail &trail ) /* If the course difficulty never actually changed anything, then this difficulty * is equivalent to Difficulty_Medium; it doesn't exist. */ - return bCourseDifficultyIsSignificant && trail.m_vEntries.size(); + return bCourseDifficultyIsSignificant && trail.m_vEntries.size() > 0; } void Course::GetTrails( vector &AddTo, StepsType st ) const