1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jonathan Gordon 2009-11-01 02:36:51 +00:00
parent bf751924dc
commit 235d1ae795
8 changed files with 8 additions and 7 deletions

View file

@ -739,6 +739,7 @@ void setvol(void)
if (global_settings.volume > max_vol)
global_settings.volume = max_vol;
sound_set_volume(global_settings.volume);
global_status.last_volume_change = current_tick;
settings_save();
}