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=fd4674bf5e22ff0aca61d1bb33e2c65b60f794f3;hb=cbb260483b3b51839805cc5b8cd95720784118c0;hpb=59f1c85c77cb3e598f317409142599ba92e23d91 diff --git a/frontend/main.c b/frontend/main.c index fd4674bf..c512175a 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -145,11 +145,14 @@ void emu_set_default_config(void) Config.CdrReschedule = 0; Config.PsxAuto = 1; + pl_rearmed_cbs.gpu_neon.allow_interlace = 2; // auto pl_rearmed_cbs.gpu_peops.iUseDither = 0; pl_rearmed_cbs.gpu_peops.dwActFixes = 1<<7; pl_rearmed_cbs.gpu_unai.abe_hack = 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; @@ -249,6 +252,9 @@ void do_emu_action(void) case SACTION_VOLUME_DOWN: plat_step_volume(emu_action == SACTION_VOLUME_UP); return; + case SACTION_MINIMIZE: + plat_minimize(); + return; default: return; } @@ -526,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; }