X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.c;h=0a49872c4b06c308baa56f73bb1ba465f82ffa35;hp=da25c6e15ed4ade9a36eacec4c2e2c5ab2f9fee4;hb=366631aa62737a8a715e80bcb35cb198fae5fd29;hpb=76f7048eff4f5357df048268e40b5bc6b9387fe5 diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index da25c6e1..0a49872c 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -109,6 +109,9 @@ static __attribute__((noinline)) void draw_active_chans(void) static void *pl_vout_set_mode(int w, int h, int bpp) { + // special h handling, Wipeout likes to change it by 1-6 + h = (h + 7) & ~7; + if (w == pl_vout_w && h == pl_vout_h && bpp == pl_vout_bpp) return pl_vout_buf; @@ -126,7 +129,10 @@ static void *pl_vout_set_mode(int w, int h, int bpp) if (pl_vout_buf == NULL) fprintf(stderr, "failed to set mode\n"); + + // menu decides on layer size, we commit it menu_notify_mode_change(w, h, bpp); + omap_enable_layer(1); return pl_vout_buf; }