summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 9cfd9aafc5..78d1fc8700 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -33,7 +33,6 @@
33#include "settings_list.h" 33#include "settings_list.h"
34#include "sound.h" 34#include "sound.h"
35#include "dsp.h" 35#include "dsp.h"
36#include "debug.h"
37#include "mpeg.h" 36#include "mpeg.h"
38#include "audio.h" 37#include "audio.h"
39#include "power.h" 38#include "power.h"
@@ -1528,6 +1527,14 @@ const struct settings_list settings[] = {
1528 tsc_is_changed, tsc_set_default), 1527 tsc_is_changed, tsc_set_default),
1529#endif 1528#endif
1530 OFFON_SETTING(0, prevent_skip, LANG_PREVENT_SKIPPING, false, "prevent track skip", NULL), 1529 OFFON_SETTING(0, prevent_skip, LANG_PREVENT_SKIPPING, false, "prevent track skip", NULL),
1530
1531 OFFON_SETTING(0, pitch_mode_semitone, LANG_SEMITONE, false,
1532 "Semitone pitch change", NULL),
1533#if CONFIG_CODEC == SWCODEC
1534 OFFON_SETTING(0, pitch_mode_timestretch, LANG_TIMESTRETCH, false,
1535 "Timestretch mode", NULL),
1536#endif
1537
1531}; 1538};
1532 1539
1533const int nb_settings = sizeof(settings)/sizeof(*settings); 1540const int nb_settings = sizeof(settings)/sizeof(*settings);