X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmain.c;h=c512175a39a9f48ef866df9b6f911dd8a9a0288f;hp=0dd488effd3d9268f04f1bc4b73e69a589a503d1;hb=cbb260483b3b51839805cc5b8cd95720784118c0;hpb=746fee5107b5548577f57cf2aa53e2dbb6a1dffc diff --git a/frontend/main.c b/frontend/main.c index 0dd488ef..c512175a 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -152,6 +152,7 @@ void emu_set_default_config(void) pl_rearmed_cbs.gpu_unai.no_light = pl_rearmed_cbs.gpu_unai.no_blend = 0; pl_rearmed_cbs.gpu_peopsgl.iVRamSize = 64; + pl_rearmed_cbs.gpu_peopsgl.iTexGarbageCollection = 1; iUseReverb = 2; iUseInterpolation = 1; @@ -531,6 +532,9 @@ int emu_save_state(int slot) return ret; ret = SaveState(fname); +#ifndef __ARM_ARCH_7A__ /* XXX */ + sync(); +#endif printf("* %s \"%s\" [%d]\n", ret == 0 ? "saved" : "failed to save", fname, slot); return ret; }