summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 88bc71804a..a794065eea 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -194,7 +194,8 @@ struct user_settings
194 /* misc options */ 194 /* misc options */
195 195
196 int repeat_mode; /* 0=off 1=repeat all 2=repeat one */ 196 int repeat_mode; /* 0=off 1=repeat all 2=repeat one */
197 int dirfilter; /* 0=display all, 1=only supported, 2=only music */ 197 int dirfilter; /* 0=display all, 1=only supported, 2=only music,
198 3=dirs+playlists, 4=ID3 database */
198 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */ 199 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
199 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */ 200 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
200 int battery_type; /* how battery is displayed: 0=graphic, 1=percent */ 201 int battery_type; /* how battery is displayed: 0=graphic, 1=percent */
@@ -351,8 +352,9 @@ enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES };
351/* Note: Any new filter modes need to be added before NUM_FILTER_MODES. 352/* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
352 * Any new rockbox browse filter modes (accessible through the menu) 353 * Any new rockbox browse filter modes (accessible through the menu)
353 * must be added after NUM_FILTER_MODES. */ 354 * must be added after NUM_FILTER_MODES. */
354enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES, 355enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
355SHOW_WPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS}; 356 NUM_FILTER_MODES,
357 SHOW_WPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS};
356 358
357/* recursive dir insert options */ 359/* recursive dir insert options */
358enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK }; 360enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };