summaryrefslogtreecommitdiff
path: root/apps/tagcache.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-06-13 07:17:01 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2024-06-13 07:17:01 -0400
commit633b06dcfea9c798dccf24429c94a6b1187fc645 (patch)
treef222b34e9317767154310f3af1b59f730a95446e /apps/tagcache.c
parent4d9c7e20632ee9c98cf73c7c3751b9f495a720d8 (diff)
downloadrockbox-633b06dcfea9c798dccf24429c94a6b1187fc645.tar.gz
rockbox-633b06dcfea9c798dccf24429c94a6b1187fc645.zip
[Bugfix] tagcache.c reverse conditional for native targets
Change-Id: Icad11d2182586a1401bc46053273207a1283c73e
Diffstat (limited to 'apps/tagcache.c')
-rw-r--r--apps/tagcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 9463d7c865..49df99254d 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -4991,7 +4991,7 @@ void do_tagcache_build(const char *path[])
4991 roots_ll[0].path = path[0]; 4991 roots_ll[0].path = path[0];
4992 roots_ll[0].next = NULL; 4992 roots_ll[0].next = NULL;
4993 4993
4994#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !defined(__PCTOOL__) && !defined(PLATFORM_NATIVE) 4994#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !defined(__PCTOOL__) && defined(PLATFORM_NATIVE)
4995 extern bool ns_volume_is_visible(int volume); /*rb_namespace.c*/ 4995 extern bool ns_volume_is_visible(int volume); /*rb_namespace.c*/
4996 /* i is for the path vector, j for the roots_ll array */ 4996 /* i is for the path vector, j for the roots_ll array */
4997 int i = 1, j = 1; 4997 int i = 1, j = 1;