summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index bc87ec141d..9590e15476 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -26,6 +26,7 @@
26#include "lcd.h" 26#include "lcd.h"
27#include "menu.h" 27#include "menu.h"
28#include "mpeg.h" 28#include "mpeg.h"
29#include "audio.h"
29#include "button.h" 30#include "button.h"
30#include "kernel.h" 31#include "kernel.h"
31#include "thread.h" 32#include "thread.h"
@@ -452,7 +453,7 @@ static bool repeat_mode(void)
452 INT, names, 3, NULL ); 453 INT, names, 3, NULL );
453 454
454 if (old_repeat != global_settings.repeat_mode) 455 if (old_repeat != global_settings.repeat_mode)
455 mpeg_flush_and_reload_tracks(); 456 audio_flush_and_reload_tracks();
456 457
457 return result; 458 return result;
458} 459}
@@ -817,7 +818,7 @@ static bool buffer_margin(void)
817{ 818{
818 return set_int(str(LANG_MP3BUFFER_MARGIN), "s", UNIT_SEC, 819 return set_int(str(LANG_MP3BUFFER_MARGIN), "s", UNIT_SEC,
819 &global_settings.buffer_margin, 820 &global_settings.buffer_margin,
820 mpeg_set_buffer_margin, 1, 0, 7 ); 821 audio_set_buffer_margin, 1, 0, 7 );
821} 822}
822 823
823static bool ff_rewind_min_step(void) 824static bool ff_rewind_min_step(void)