For now, sort the group sort by difficulty. As is, the difficulty sort was

missing.
This commit is contained in:
Glenn Maynard
2003-05-29 00:35:02 +00:00
parent c4caf4b948
commit a4e60cdd31
+3 -1
View File
@@ -370,7 +370,9 @@ void MusicWheel::BuildWheelItemDatas( vector<WheelItemData> &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 );