summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 4a25b915ed..f38a8bfc16 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -218,7 +218,7 @@
218 218
219/* Enable the directory cache and tagcache in RAM if we have 219/* Enable the directory cache and tagcache in RAM if we have
220 * plenty of RAM. Both features can be enabled independently. */ 220 * plenty of RAM. Both features can be enabled independently. */
221#if (!defined(MEMORYSIZE) || (MEMORYSIZE > 8) || (MEM > 8)) && \ 221#if ((defined(MEMORYSIZE) && (MEMORYSIZE > 8)) || MEM > 8) && \
222 !defined(BOOTLOADER) 222 !defined(BOOTLOADER)
223#define HAVE_DIRCACHE 223#define HAVE_DIRCACHE
224#ifdef HAVE_TAGCACHE 224#ifdef HAVE_TAGCACHE