From a4e60cdd313af5ee97efc8a4aa33299b204ad435 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 29 May 2003 00:35:02 +0000 Subject: [PATCH] For now, sort the group sort by difficulty. As is, the difficulty sort was missing. --- stepmania/src/MusicWheel.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 );