summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 09a01b40a1..ce29e020f7 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -136,6 +136,13 @@ enum
136}; 136};
137#endif 137#endif
138 138
139enum
140{
141 TAGCACHE_RAM_OFF = 0,
142 TAGCACHE_RAM_ON = 1,
143 TAGCACHE_RAM_QUICK = 2
144};
145
139/* dir filter options */ 146/* dir filter options */
140/* Note: Any new filter modes need to be added before NUM_FILTER_MODES. 147/* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
141 * Any new rockbox browse filter modes (accessible through the menu) 148 * Any new rockbox browse filter modes (accessible through the menu)
@@ -576,7 +583,7 @@ struct user_settings
576#endif 583#endif
577#ifdef HAVE_TAGCACHE 584#ifdef HAVE_TAGCACHE
578#ifdef HAVE_TC_RAMCACHE 585#ifdef HAVE_TC_RAMCACHE
579 bool tagcache_ram; /* load tagcache to ram? */ 586 int tagcache_ram; /* load tagcache to ram: 1=on, 2=quick (ignore dircache) */
580#endif 587#endif
581 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */ 588 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
582 bool autoresume_enable; /* enable auto-resume feature? */ 589 bool autoresume_enable; /* enable auto-resume feature? */