X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=frontend%2Fmain.c;h=dc5be3cfeb8232e2f208f6008817b5181890d0e2;hb=4ea7de6a1495abfbc49c54fd2a90e902fdfa13d9;hp=7b3aac53a205f7d2ae99a40c7199906f836cd198;hpb=5440b88ee29ee5b8929fcf338dfc8f476468514d;p=pcsx_rearmed.git diff --git a/frontend/main.c b/frontend/main.c index 7b3aac53..dc5be3cf 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -145,12 +145,15 @@ 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_neon.allow_interlace = 2; // auto + memset(&pl_rearmed_cbs.gpu_peopsgl, 0, sizeof(pl_rearmed_cbs.gpu_peopsgl)); + pl_rearmed_cbs.gpu_peopsgl.iVRamSize = 64; + pl_rearmed_cbs.gpu_peopsgl.iTexGarbageCollection = 1; iUseReverb = 2; iUseInterpolation = 1; @@ -250,6 +253,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; } @@ -358,9 +364,9 @@ int main(int argc, char *argv[]) return 1; // frontend stuff + // init input but leave probing to platform code, + // they add input drivers and may need to modify them after probe in_init(); - in_evdev_init(); - //in_probe(); pl_init(); plat_init(); menu_init(); // loads config @@ -527,6 +533,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; }