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.zip
rockbox-d5c927d92ffa50e893b389a88843a5ccd4409e03.tar.gz
rockbox-d5c927d92ffa50e893b389a88843a5ccd4409e03.tar.bz2
rockbox-d5c927d92ffa50e893b389a88843a5ccd4409e03.tar.xz
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 de89dfe..5420cb3 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -179,7 +179,7 @@
/* Enable the directory cache if we have plenty of RAM. */
/* Cache is just temporarily disabled for simulator build.
* Do the small fix in dircache.c to enable this. */
-#if (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER) && !defined(SIMULATOR)
+#if (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER)
#define HAVE_DIRCACHE 1
#endif