diff options
author | Teruaki Kawashima <teru@rockbox.org> | 2010-09-30 13:09:50 +0000 |
---|---|---|
committer | Teruaki Kawashima <teru@rockbox.org> | 2010-09-30 13:09:50 +0000 |
commit | 55a63609ef1bf24c3594eeb2f6eca92cba81bae5 (patch) | |
tree | 4636c15a93666b0f10087c6685582cc8af12b597 /apps/tagcache.h | |
parent | 2dbe569aff3d7f5cab3efff30b6467e02560df91 (diff) | |
download | rockbox-55a63609ef1bf24c3594eeb2f6eca92cba81bae5.tar.gz rockbox-55a63609ef1bf24c3594eeb2f6eca92cba81bae5.zip |
use correct condition for #if for tagcache_fill_tags().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28188 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r-- | apps/tagcache.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h index 15b4251ddc..b52da76a0f 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -239,7 +239,9 @@ void tagcache_screensync_enable(bool state); #ifdef HAVE_TC_RAMCACHE bool tagcache_is_ramcache(void); +#ifdef HAVE_DIRCACHE bool tagcache_fill_tags(struct mp3entry *id3, const char *filename); +#endif void tagcache_unload_ramcache(void); #endif void tagcache_init(void) INIT_ATTR; |