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.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index ee4684233f..29145eb3ca 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -682,10 +682,11 @@ bool gui_synclist_do_button(struct gui_synclist * lists,
682 682
683#ifdef HAVE_VOLUME_IN_LIST 683#ifdef HAVE_VOLUME_IN_LIST
684 case ACTION_LIST_VOLUP: 684 case ACTION_LIST_VOLUP:
685 global_settings.volume += 2; 685 global_settings.volume += sound_steps(SOUND_VOLUME);
686 /* up two because the falthrough brings it down one */ 686 setvol();
687 return true;
687 case ACTION_LIST_VOLDOWN: 688 case ACTION_LIST_VOLDOWN:
688 global_settings.volume--; 689 global_settings.volume -= sound_steps(SOUND_VOLUME);
689 setvol(); 690 setvol();
690 return true; 691 return true;
691#endif 692#endif