From 501a8ca6852cd6c7d892ad321ebeb4b6950fd3aa Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 30 Oct 2023 00:33:46 +0200 Subject: [PATCH] gpulib: don't set_mode for 0 can happen with the new borderless setting --- plugins/gpulib/vout_pl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } -- 2.39.2