From 9236d2002839513585958155c6b43ece6681a186 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 18 Feb 2003 23:23:52 +0000 Subject: [PATCH] /**/ --- stepmania/src/Course.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 942c80ac9b..4906a7501f 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -608,6 +608,9 @@ static bool CompareCoursePointersByDifficulty(const Course* pCourse1, const Cour // "Players Best 1-4" and "Players Best 5-8". Replace the string " " // with " 0" for comparison only. + // XXX: That doesn't happen to me, and it shouldn't (strcmp is strictly + // a byte sort, though CompareNoCase doesn't use strcmp). Are you sure + // you didn't have only one space before? -glenn CString sName1 = pCourse1->m_sName; CString sName2 = pCourse2->m_sName; sName1.Replace( " " , " 0" );