summaryrefslogtreecommitdiff
path: root/apps/plugins/vu_meter.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/vu_meter.c')
-rw-r--r--apps/plugins/vu_meter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/vu_meter.c b/apps/plugins/vu_meter.c
index 22fc5217d2..afeaa83d90 100644
--- a/apps/plugins/vu_meter.c
+++ b/apps/plugins/vu_meter.c
@@ -139,7 +139,7 @@ void change_volume(int delta) {
139 if (vol>100) vol = 100; 139 if (vol>100) vol = 100;
140 else if (vol < 0) vol = 0; 140 else if (vol < 0) vol = 0;
141 if (vol != rb->global_settings->volume) { 141 if (vol != rb->global_settings->volume) {
142 rb->mpeg_sound_set(SOUND_VOLUME, vol); 142 rb->sound_set(SOUND_VOLUME, vol);
143 rb->global_settings->volume = vol; 143 rb->global_settings->volume = vol;
144 rb->snprintf(curr_vol, sizeof(curr_vol), "%d", vol); 144 rb->snprintf(curr_vol, sizeof(curr_vol), "%d", vol);
145 rb->lcd_putsxy(0,0, curr_vol); 145 rb->lcd_putsxy(0,0, curr_vol);