From b16c1d3a9c6b94e6a6e3d110cde1198d766ac345 Mon Sep 17 00:00:00 2001 From: poco0317 Date: Sat, 1 Dec 2018 20:47:35 -0600 Subject: [PATCH] Make popular sort look like it works but it really doesnt --- src/MusicWheel.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/MusicWheel.cpp b/src/MusicWheel.cpp index 2602681f5d..e4ce33db96 100644 --- a/src/MusicWheel.cpp +++ b/src/MusicWheel.cpp @@ -381,8 +381,9 @@ MusicWheel::GetSongList(vector& arraySongs, SortOrder so) SONGMAN->GetPreferredSortSongs(apAllSongs); break; case SORT_POPULARITY: - apAllSongs = SONGMAN->GetPopularSongs(); - break; + // todo: make this work -poco + //apAllSongs = SONGMAN->GetPopularSongs(); + //break; case SORT_GROUP: // if we're not using sections with a preferred song group, and // there is a group to load, only load those songs. -aj