mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
[Bugfix] tagcache.c reverse conditional for native targets
Change-Id: Icad11d2182586a1401bc46053273207a1283c73e
This commit is contained in:
parent
4d9c7e2063
commit
633b06dcfe
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue