summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-11-01 02:36:51 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-11-01 02:36:51 +0000
commit235d1ae79574476b2ed5167b33dc8e06489b35a0 (patch)
treedc3416696b60f4abdb8a387193bc8ad37500a75f /apps/misc.c
parentbf751924dc4ed49ad0f0fb704531d1e4290b58cb (diff)
downloadrockbox-235d1ae79574476b2ed5167b33dc8e06489b35a0.tar.gz
rockbox-235d1ae79574476b2ed5167b33dc8e06489b35a0.zip
Fix FS#10745 - %mv not working in sbs...
This fix is as good as we can do, but not perfect. Because the sbs is only updated when a button is pressed it will stay in the "volume changing" state probalby longer than expected.. which isnt terrible, but useful to remember. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23455 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 6be9f8f010..f1c38f376c 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -739,6 +739,7 @@ void setvol(void)
739 if (global_settings.volume > max_vol) 739 if (global_settings.volume > max_vol)
740 global_settings.volume = max_vol; 740 global_settings.volume = max_vol;
741 sound_set_volume(global_settings.volume); 741 sound_set_volume(global_settings.volume);
742 global_status.last_volume_change = current_tick;
742 settings_save(); 743 settings_save();
743} 744}
744 745