1
0
Fork 0
forked from len0rd/rockbox

Bugfix: Only mangle the current playlist when the shuffle setting is changed (from menu) when the music is playing. This behaviour was already present in the recorder's F2 quickscreen, and doing otherwise isn't intuitive.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6391 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-05-01 19:13:47 +00:00
parent 484285200a
commit d6587f9b31

View file

@ -1047,7 +1047,8 @@ static bool playback_settings_menu(void)
result = menu_run(m);
menu_exit(m);
if (old_shuffle != global_settings.playlist_shuffle)
if ((old_shuffle != global_settings.playlist_shuffle)
&& (audio_status() & AUDIO_STATUS_PLAY))
{
if (global_settings.playlist_shuffle)
{