summaryrefslogtreecommitdiff
path: root/apps/plugins/metronome.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/metronome.c')
-rw-r--r--apps/plugins/metronome.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/metronome.c b/apps/plugins/metronome.c
index 98b516f9e8..3793fd9690 100644
--- a/apps/plugins/metronome.c
+++ b/apps/plugins/metronome.c
@@ -201,7 +201,7 @@ void change_volume(int delta){
201 if (vol > 100) vol = 100; 201 if (vol > 100) vol = 100;
202 else if (vol < 0) vol = 0; 202 else if (vol < 0) vol = 0;
203 if (vol != rb->global_settings->volume) { 203 if (vol != rb->global_settings->volume) {
204 rb->mpeg_sound_set(SOUND_VOLUME, vol); 204 rb->sound_set(SOUND_VOLUME, vol);
205 rb->global_settings->volume = vol; 205 rb->global_settings->volume = vol;
206 rb->snprintf(buffer, sizeof(buffer), "Vol: %d ", vol); 206 rb->snprintf(buffer, sizeof(buffer), "Vol: %d ", vol);
207#ifdef HAVE_LCD_BITMAP 207#ifdef HAVE_LCD_BITMAP