NUM -> 0-9

This commit is contained in:
Glenn Maynard
2005-10-30 19:58:00 +00:00
parent dfdc0e6713
commit 39696c1a08
+1 -1
View File
@@ -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