summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-09-30 13:09:50 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-09-30 13:09:50 +0000
commit55a63609ef1bf24c3594eeb2f6eca92cba81bae5 (patch)
tree4636c15a93666b0f10087c6685582cc8af12b597 /apps/plugin.h
parent2dbe569aff3d7f5cab3efff30b6467e02560df91 (diff)
downloadrockbox-55a63609ef1bf24c3594eeb2f6eca92cba81bae5.zip
rockbox-55a63609ef1bf24c3594eeb2f6eca92cba81bae5.tar.gz
rockbox-55a63609ef1bf24c3594eeb2f6eca92cba81bae5.tar.bz2
rockbox-55a63609ef1bf24c3594eeb2f6eca92cba81bae5.tar.xz
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/plugin.h')
-rw-r--r--apps/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 0b3a5b5..cbfc48b 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -874,7 +874,7 @@ struct plugin_api {
int tag, char *buf, long size);
void (*tagcache_search_finish)(struct tagcache_search *tcs);
long (*tagcache_get_numeric)(const struct tagcache_search *tcs, int tag);
-#ifdef HAVE_TC_RAMCACHE
+#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
bool (*tagcache_fill_tags)(struct mp3entry *id3, const char *filename);
#endif
#endif