From: notaz Date: Sun, 29 Oct 2023 22:33:46 +0000 (+0200) Subject: gpulib: don't set_mode for 0 X-Git-Tag: r24l~86 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=501a8ca6852cd6c7d892ad321ebeb4b6950fd3aa;p=pcsx_rearmed.git gpulib: don't set_mode for 0 can happen with the new borderless setting --- diff --git a/plugins/gpulib/vout_pl.c b/plugins/gpulib/vout_pl.c index e8f959f6..f5e60f92 100644 --- a/plugins/gpulib/vout_pl.c +++ b/plugins/gpulib/vout_pl.c @@ -63,7 +63,8 @@ static void check_mode_change(int force) gpu.state.w_out_old = w_out; gpu.state.h_out_old = h_out; - cbs->pl_vout_set_mode(w_out, h_out, w, h, + if (w_out != 0 && h_out != 0) + cbs->pl_vout_set_mode(w_out, h_out, w, h, (gpu.status & PSX_GPU_STATUS_RGB24) ? 24 : 16); } }