From 2af5a8cab028594bf73cc25efc2737bb7fe715bd Mon Sep 17 00:00:00 2001 From: dborth Date: Wed, 21 Jan 2009 06:51:26 +0000 Subject: [PATCH] disable read-ahead on gamecube --- source/ngc/fileop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/ngc/fileop.c b/source/ngc/fileop.c index 06e55e2..34386af 100644 --- a/source/ngc/fileop.c +++ b/source/ngc/fileop.c @@ -186,8 +186,10 @@ bool MountFAT(int method) mounted = false; else if(!fatMountSimple(name, disc)) mounted = false; +#ifdef HW_RVL else fatSetReadAhead(rootdir, 6, 64); +#endif } isMounted[method] = mounted;