1 May 2005 21:13
amiconn: apps settings_menu.c,1.174,1.175
<cvs <at> labb.contactor.se>
2005-05-01 19:13:50 GMT
2005-05-01 19:13:50 GMT
Update of /cvsroot/rockbox/apps
In directory labb:/tmp/cvs-serv1277/apps
Modified Files:
settings_menu.c
Log Message:
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.
Index: settings_menu.c
===================================================================
RCS file: /cvsroot/rockbox/apps/settings_menu.c,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -d -r1.174 -r1.175
--- settings_menu.c 15 Apr 2005 12:08:49 -0000 1.174
+++ settings_menu.c 1 May 2005 19:13:47 -0000 1.175
<at> <at> -1047,7 +1047,8 <at> <at>
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)
{
_______________________________________________
http://cool.haxx.se/mailman/listinfo/rockbox-cvs
(Continue reading)
RSS Feed