summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-08-20 20:30:35 +0000
committerThomas Martitz <kugel@rockbox.org>2009-08-20 20:30:35 +0000
commit3f7f860bc59c39075099bf8375857d5908cad989 (patch)
tree5947e769b6d3fa0fdac7d3641ab8d13c9039c444
parent16983afae7a7c141c2fa2afacadeb6ae68233a5a (diff)
downloadrockbox-3f7f860bc59c39075099bf8375857d5908cad989.tar.gz
rockbox-3f7f860bc59c39075099bf8375857d5908cad989.zip
Enable dircache for targets with 8MB RAM too (AMS Sansas, modded Archoses).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22443 a1c6a512-1295-4272-9138-f99709370657
-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 8871abcb88..18dca402fb 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -612,7 +612,7 @@ Lyre prototype 1*/
612 612
613/* Enable the directory cache and tagcache in RAM if we have 613/* Enable the directory cache and tagcache in RAM if we have
614 * plenty of RAM. Both features can be enabled independently. */ 614 * plenty of RAM. Both features can be enabled independently. */
615#if ((defined(MEMORYSIZE) && (MEMORYSIZE > 8)) || MEM > 8) && \ 615#if ((defined(MEMORYSIZE) && (MEMORYSIZE >= 8)) || MEM >= 8) && \
616 !defined(BOOTLOADER) 616 !defined(BOOTLOADER)
617#define HAVE_DIRCACHE 617#define HAVE_DIRCACHE
618#ifdef HAVE_TAGCACHE 618#ifdef HAVE_TAGCACHE