diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-08-20 20:30:35 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-08-20 20:30:35 +0000 |
| commit | 3f7f860bc59c39075099bf8375857d5908cad989 (patch) | |
| tree | 5947e769b6d3fa0fdac7d3641ab8d13c9039c444 /firmware/export | |
| parent | 16983afae7a7c141c2fa2afacadeb6ae68233a5a (diff) | |
| download | rockbox-3f7f860bc59c39075099bf8375857d5908cad989.zip rockbox-3f7f860bc59c39075099bf8375857d5908cad989.tar.gz rockbox-3f7f860bc59c39075099bf8375857d5908cad989.tar.bz2 rockbox-3f7f860bc59c39075099bf8375857d5908cad989.tar.xz | |
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
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 8871abc..18dca40 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -612,7 +612,7 @@ 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) && \ +#if ((defined(MEMORYSIZE) && (MEMORYSIZE >= 8)) || MEM >= 8) && \ !defined(BOOTLOADER) #define HAVE_DIRCACHE #ifdef HAVE_TAGCACHE |