summaryrefslogtreecommitdiff
path: root/apps/gui/wps.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r--apps/gui/wps.c4
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)
841 case ACTION_WPS_VOLUP: /* fall through */ 841 case ACTION_WPS_VOLUP: /* fall through */
842 case ACTION_WPS_VOLDOWN: 842 case ACTION_WPS_VOLDOWN:
843 if (button == ACTION_WPS_VOLUP) 843 if (button == ACTION_WPS_VOLUP)
844 global_settings.volume += sound_steps(SOUND_VOLUME); 844 adjust_volume(1);
845 else 845 else
846 global_settings.volume -= sound_steps(SOUND_VOLUME); 846 adjust_volume(-1);
847 847
848 setvol(); 848 setvol();
849 FOR_NB_SCREENS(i) 849 FOR_NB_SCREENS(i)