forked from len0rd/rockbox
repair the condition
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12358 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
64a0fb8fd9
commit
0db847071f
1 changed files with 2 additions and 1 deletions
|
@ -218,7 +218,8 @@
|
|||
|
||||
/* Enable the directory cache and tagcache in RAM if we have
|
||||
* plenty of RAM. Both features can be enabled independently. */
|
||||
#if defined(MEMORYSIZE) && (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER)
|
||||
#if (!defined(MEMORYSIZE) || (MEMORYSIZE > 8) || (MEM > 8)) && \
|
||||
!defined(BOOTLOADER)
|
||||
#define HAVE_DIRCACHE
|
||||
#ifdef HAVE_TAGCACHE
|
||||
#define HAVE_TC_RAMCACHE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue