summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-03-30 19:18:45 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-03-30 19:18:45 +0000
commitd5c927d92ffa50e893b389a88843a5ccd4409e03 (patch)
tree2618704aec2aa27ab131bd5ccdd4aaa74b9a0d8b
parent3881ce94bd73ecd38855a385dadfdf16564927ca (diff)
downloadrockbox-d5c927d92ffa50e893b389a88843a5ccd4409e03.tar.gz
rockbox-d5c927d92ffa50e893b389a88843a5ccd4409e03.zip
Actually enable the dircache for simulators.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9366 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 de89dfe99e..5420cb37f4 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -179,7 +179,7 @@
179/* Enable the directory cache if we have plenty of RAM. */ 179/* Enable the directory cache if we have plenty of RAM. */
180/* Cache is just temporarily disabled for simulator build. 180/* Cache is just temporarily disabled for simulator build.
181 * Do the small fix in dircache.c to enable this. */ 181 * Do the small fix in dircache.c to enable this. */
182#if (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER) && !defined(SIMULATOR) 182#if (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER)
183#define HAVE_DIRCACHE 1 183#define HAVE_DIRCACHE 1
184#endif 184#endif
185 185