From 97f63638e7d6f22003cdd399cde6e41991040738 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 12 Feb 2003 21:23:54 +0000 Subject: [PATCH] oops; fix title sorting (brown paper bag time again) --- stepmania/src/MusicWheel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index bc90bbc1b9..109582243e 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -1112,7 +1112,7 @@ CString MusicWheel::GetSectionNameFromSongAndSort( const Song* pSong, SongSortOr // sTemp = "NUM"; // return sTemp; case SORT_TITLE: - sTemp = pSong->GetTranslitSubTitle(); + sTemp = pSong->GetTranslitMainTitle(); sTemp.MakeUpper(); if(sTemp.empty()) return "";