diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index ce186a1e85..350353bf4b 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -370,7 +370,9 @@ void MusicWheel::BuildWheelItemDatas( vector &arrayWheelItemDatas SortSongPointerArrayByGroupAndDifficulty( arraySongs ); break; case SORT_GROUP: - SortSongPointerArrayByGroupAndTitle( arraySongs ); + /* Maybe this should sort by title once we have PREFERRED implemented. */ + SortSongPointerArrayByGroupAndDifficulty( arraySongs ); + // SortSongPointerArrayByGroupAndTitle( arraySongs ); break; case SORT_TITLE: SortSongPointerArrayByTitle( arraySongs );