From f9fcff2a10c6a4cc822685b8312ceb987c115799 Mon Sep 17 00:00:00 2001 From: dborth Date: Tue, 6 Jan 2009 06:04:41 +0000 Subject: [PATCH] new read ahead cache --- source/ngc/fileop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ngc/fileop.cpp b/source/ngc/fileop.cpp index a4da3bc..889d638 100644 --- a/source/ngc/fileop.cpp +++ b/source/ngc/fileop.cpp @@ -189,8 +189,8 @@ bool MountFAT(int method) mounted = false; else if(!fatMountSimple(name, disc)) mounted = false; - //else - // fatEnableReadAhead(name, 6, 64); + else + fatSetReadAhead(rootdir, 6, 64); } isMounted[method] = mounted;