reduce save buffer size on gamecube. fixes graphical glitches

This commit is contained in:
Daryl Borth 2020-03-15 09:38:31 -06:00
parent c44a2db968
commit e847522abf

View File

@ -15,7 +15,11 @@
#include <string.h>
#include <unistd.h>
#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();