diff options
author | William Wilgus <wilgus.william@gmail.com> | 2024-06-13 07:17:01 -0400 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2024-06-13 07:17:01 -0400 |
commit | 633b06dcfea9c798dccf24429c94a6b1187fc645 (patch) | |
tree | f222b34e9317767154310f3af1b59f730a95446e | |
parent | 4d9c7e20632ee9c98cf73c7c3751b9f495a720d8 (diff) | |
download | rockbox-633b06dcfe.tar.gz rockbox-633b06dcfe.zip |
[Bugfix] tagcache.c reverse conditional for native targets
Change-Id: Icad11d2182586a1401bc46053273207a1283c73e
-rw-r--r-- | apps/tagcache.c | 2 |
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[]) roots_ll[0].path = path[0]; roots_ll[0].next = NULL; -#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !defined(__PCTOOL__) && !defined(PLATFORM_NATIVE) +#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !defined(__PCTOOL__) && defined(PLATFORM_NATIVE) extern bool ns_volume_is_visible(int volume); /*rb_namespace.c*/ /* i is for the path vector, j for the roots_ll array */ int i = 1, j = 1; |