From eaa38b6df0c4b7a654f8aaa6fab21a5fd0c79af6 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 ab56cad2..7f31e151 100644 --- a/plugins/gpulib/vout_pl.c +++ b/plugins/gpulib/vout_pl.c @@ -54,7 +54,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