diff options
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r-- | apps/gui/wps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index 4b0c7c056f..fe656034b9 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -841,9 +841,9 @@ long gui_wps_show(void) case ACTION_WPS_VOLUP: /* fall through */ case ACTION_WPS_VOLDOWN: if (button == ACTION_WPS_VOLUP) - global_settings.volume += sound_steps(SOUND_VOLUME); + adjust_volume(1); else - global_settings.volume -= sound_steps(SOUND_VOLUME); + adjust_volume(-1); setvol(); FOR_NB_SCREENS(i) |