summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index b29a219733..5313fe37b1 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -80,6 +80,10 @@ extern const char * const trig_durations[TRIG_DURATION_COUNT];
80#define CROSSFADE_ENABLE_SHUFFLE 1 80#define CROSSFADE_ENABLE_SHUFFLE 1
81#define CROSSFADE_ENABLE_ALWAYS 2 81#define CROSSFADE_ENABLE_ALWAYS 2
82 82
83#define FOLDER_ADVANCE_OFF 0
84#define FOLDER_ADVANCE_NEXT 1
85#define FOLDER_ADVANCE_RANDOM 2
86
83/* These define "virtual pointers", which could either be a literal string, 87/* These define "virtual pointers", which could either be a literal string,
84 or a mean a string ID if the pointer is in a certain range. 88 or a mean a string ID if the pointer is in a certain range.
85 This helps to save space for menus and options. */ 89 This helps to save space for menus and options. */
@@ -363,7 +367,7 @@ struct user_settings
363#endif 367#endif
364#endif /* HAVE_REMOTE_LCD */ 368#endif /* HAVE_REMOTE_LCD */
365 369
366 bool next_folder; /* move to next folder */ 370 int next_folder; /* move to next folder */
367 bool runtimedb; /* runtime database active? */ 371 bool runtimedb; /* runtime database active? */
368 372
369#if CONFIG_CODEC == SWCODEC 373#if CONFIG_CODEC == SWCODEC