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);