summaryrefslogtreecommitdiff
path: root/apps/gui/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/list.c')
-rw-r--r--apps/gui/list.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index 83d12289f2..652279a9de 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -663,12 +663,10 @@ bool gui_synclist_do_button(struct gui_synclist * lists, int *actionptr)
663 663
664#ifdef HAVE_VOLUME_IN_LIST 664#ifdef HAVE_VOLUME_IN_LIST
665 case ACTION_LIST_VOLUP: 665 case ACTION_LIST_VOLUP:
666 global_settings.volume += sound_steps(SOUND_VOLUME); 666 adjust_volume(1);
667 setvol();
668 return true; 667 return true;
669 case ACTION_LIST_VOLDOWN: 668 case ACTION_LIST_VOLDOWN:
670 global_settings.volume -= sound_steps(SOUND_VOLUME); 669 adjust_volume(-1);
671 setvol();
672 return true; 670 return true;
673#endif 671#endif
674 case ACTION_STD_PREV: 672 case ACTION_STD_PREV: