From f44facda48f50a78f8babdb2580a818f26bfbe40 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 13 Jan 2005 17:40:56 +0000 Subject: [PATCH] fix roulette not being sorted --- stepmania/src/MusicWheel.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index a08ff7d121..f401fb21df 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -463,11 +463,8 @@ void MusicWheel::BuildWheelItemDatas( vector &arrayWheelItemDatas switch( so ) { case SORT_PREFERRED: - SongUtil::SortSongPointerArrayByGroupAndDifficulty( arraySongs ); - bUseSections = false; - break; case SORT_ROULETTE: - // don't sort. We shuffle once this is chosen. + SongUtil::SortSongPointerArrayByGroupAndDifficulty( arraySongs ); bUseSections = false; break; case SORT_GROUP: