From 6d8349b6d2764a3ad1fa20d530189fe199530984 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 30 Oct 2005 20:07:49 +0000 Subject: [PATCH] update for 0-9 --- stepmania/src/SongUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/SongUtil.cpp b/stepmania/src/SongUtil.cpp index d671af676a..02b1114d3d 100644 --- a/stepmania/src/SongUtil.cpp +++ b/stepmania/src/SongUtil.cpp @@ -317,7 +317,7 @@ void SongUtil::SortSongPointerArrayBySectionName( vector &vpSongsInOut, S CString val = GetSectionNameFromSongAndSort( vpSongsInOut[i], so ); /* Make sure NUM comes first and OTHER comes last. */ - if( val == "NUM" ) val = "0"; + if( val == "0-9" ) val = "0"; else if( val == "OTHER" ) val = "2"; else val = "1" + MakeSortString(val);