From 39696c1a082240a13030524284995a04b947e5eb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 30 Oct 2005 19:58:00 +0000 Subject: [PATCH] NUM -> 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 c3dd4dd07c..d671af676a 100644 --- a/stepmania/src/SongUtil.cpp +++ b/stepmania/src/SongUtil.cpp @@ -236,7 +236,7 @@ CString SongUtil::GetSectionNameFromSongAndSort( const Song* pSong, SortOrder so if( s.empty() ) return CString(); else if( s[0] >= '0' && s[0] <= '9' ) - return "NUM"; + return "0-9"; else if( s[0] < 'A' || s[0] > 'Z') return "OTHER"; else