mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Fix volume handling of steps in radio
Change-Id: I6d91c5ebc90f9303c71005f3b954df3a101ab732
This commit is contained in:
parent
44023eb430
commit
07fcced4fb
1 changed files with 2 additions and 2 deletions
|
@ -517,14 +517,14 @@ void radio_screen(void)
|
|||
|
||||
case ACTION_SETTINGS_INC:
|
||||
case ACTION_SETTINGS_INCREPEAT:
|
||||
global_settings.volume++;
|
||||
global_settings.volume += sound_steps(SOUND_VOLUME);
|
||||
setvol();
|
||||
update_type = SKIN_REFRESH_NON_STATIC;
|
||||
break;
|
||||
|
||||
case ACTION_SETTINGS_DEC:
|
||||
case ACTION_SETTINGS_DECREPEAT:
|
||||
global_settings.volume--;
|
||||
global_settings.volume -= sound_steps(SOUND_VOLUME);
|
||||
setvol();
|
||||
update_type = SKIN_REFRESH_NON_STATIC;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue