1
0
Fork 0
forked from len0rd/rockbox

Make resume work with manually shuffled playlists (idea by hardeep on IRC)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6843 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomas Salfischberger 2005-06-23 16:27:15 +00:00
parent 8fd0378c6f
commit bec1afada5

View file

@ -136,12 +136,8 @@ static bool list_viewers(void)
static bool shuffle_playlist(void)
{
int seed, index;
seed = playlist_get_seed(NULL);
index = playlist_get_first_index(NULL);
playlist_shuffle(seed, index);
playlist_sort(NULL, true);
playlist_randomise(NULL, current_tick, true);
return false;
}