Fix volume handling of steps in radio

Change-Id: I6d91c5ebc90f9303c71005f3b954df3a101ab732
This commit is contained in:
Amaury Pouly 2013-07-17 11:13:51 +02:00 committed by Solomon Peachy
parent 44023eb430
commit 07fcced4fb

View file

@ -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;