summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2010-09-17 20:13:13 +0000
committerFrank Gevaerts <frank@gevaerts.be>2010-09-17 20:13:13 +0000
commitbd43690170ea9441226557bf58907654338b6029 (patch)
treef42d2a7ea6f6f90429390c45f2dbb958ee4dad94
parentb0351c75888c66e6c0e44eddba6b6676608adcf2 (diff)
downloadrockbox-bd43690170ea9441226557bf58907654338b6029.tar.gz
rockbox-bd43690170ea9441226557bf58907654338b6029.zip
Simplify unnecessary baroque preprocessor condition a bit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28101 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config.h4
1 files 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 */
663 663
664/* Enable the directory cache and tagcache in RAM if we have 664/* Enable the directory cache and tagcache in RAM if we have
665 * plenty of RAM. Both features can be enabled independently. */ 665 * plenty of RAM. Both features can be enabled independently. */
666#if ((defined(MEMORYSIZE) && (MEMORYSIZE >= 8)) || MEM >= 8) && \ 666#if (MEMORYSIZE >= 8) && !defined(BOOTLOADER) && !defined(__PCTOOL__) \
667 !defined(BOOTLOADER) && !defined(__PCTOOL__) && !defined(APPLICATION) 667 && !defined(APPLICATION)
668#define HAVE_DIRCACHE 668#define HAVE_DIRCACHE
669#ifdef HAVE_TAGCACHE 669#ifdef HAVE_TAGCACHE
670#define HAVE_TC_RAMCACHE 670#define HAVE_TC_RAMCACHE