diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-07-10 16:47:30 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-07-10 16:47:30 +0000 |
| commit | 8003fe6f6684da3fe13346289487cb85eba66ae6 (patch) | |
| tree | 56d327df1c3f16a42af02ff6df34cd4d59174049 /apps | |
| parent | 9cd5c3e1195d872cbac2e8744bac5430490f6636 (diff) | |
| download | rockbox-8003fe6f6684da3fe13346289487cb85eba66ae6.zip rockbox-8003fe6f6684da3fe13346289487cb85eba66ae6.tar.gz rockbox-8003fe6f6684da3fe13346289487cb85eba66ae6.tar.bz2 rockbox-8003fe6f6684da3fe13346289487cb85eba66ae6.tar.xz | |
Oops, forgot to commit this.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10193 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h index c6ed0dd..dc9e4f8 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -26,6 +26,7 @@ #include "file.h" #include "dircache.h" #include "timefuncs.h" +#include "tagcache.h" #ifdef HAVE_BACKLIGHT_BRIGHTNESS #include "backlight.h" /* for [MIN|MAX]_BRIGHTNESS_SETTING */ @@ -439,8 +440,11 @@ struct user_settings #ifdef HAVE_DIRCACHE bool dircache; /* enable directory cache */ int dircache_size; /* directory cache structure last size, 22 bits */ - bool tagcache_ram; /* tag cache mode (0=disabled,1=disk,2=ram) */ #endif +#ifdef HAVE_TC_RAMCACHE + bool tagcache_ram; /* load tagcache to ram? */ +#endif + bool tagcache_autoupdate; /* automatically keep tagcache in sync? */ int default_codepage; /* set default codepage for tag conversion */ #ifdef HAVE_REMOTE_LCD unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */ |