From e847522abfa9c54db57abab6f68dcf3283b5e6ce Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Sun, 15 Mar 2020 09:38:31 -0600 Subject: [PATCH] reduce save buffer size on gamecube. fixes graphical glitches --- source/fileop.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/fileop.h b/source/fileop.h index 3d85371..1cfeb5e 100644 --- a/source/fileop.h +++ b/source/fileop.h @@ -15,7 +15,11 @@ #include #include +#ifdef HW_RVL #define SAVEBUFFERSIZE (1024 * 1024 * 2) // leave room for IPS/UPS files and large images +#else +#define SAVEBUFFERSIZE (1024 * 1024 * 1) +#endif void InitDeviceThread(); void ResumeDeviceThread();