From e0aaf15c542e9f76bafba29e4400d27edc643a9c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 16 Feb 2003 08:11:41 +0000 Subject: [PATCH] return bool, not int --- 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 590d2a538d..8f885090f8 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -441,7 +441,7 @@ void Course::AddScores( NotesType nt, bool bPlayerEnabled[NUM_PLAYERS], int iDan // // Sorting stuff // -static int CompareCoursePointersByDifficulty(const Course* pCourse1, const Course* pCourse2) +static bool CompareCoursePointersByDifficulty(const Course* pCourse1, const Course* pCourse2) { return pCourse1->GetEstimatedNumStages() < pCourse2->GetEstimatedNumStages(); }