From bd43690170ea9441226557bf58907654338b6029 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Fri, 17 Sep 2010 20:13:13 +0000 Subject: Simplify unnecessary baroque preprocessor condition a bit git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28101 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/export/config.h b/firmware/export/config.h index 623cbf8dc0..8892600ece 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -663,8 +663,8 @@ Lyre prototype 1 */ /* 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) && !defined(__PCTOOL__) && !defined(APPLICATION) +#if (MEMORYSIZE >= 8) && !defined(BOOTLOADER) && !defined(__PCTOOL__) \ + && !defined(APPLICATION) #define HAVE_DIRCACHE #ifdef HAVE_TAGCACHE #define HAVE_TC_RAMCACHE -- cgit v1.2.3