From 3c168ed64cf28dce7da81ab39f3e43e5f4034658 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Thu, 25 Apr 2024 14:12:50 -0700 Subject: [PATCH] Fix crashes when a branch is saved/loaded while the main window is minimized primarily occurs with the case of a lua script and the user decides to minimize the main window --- .../DisplayManager/DisplayManagerBase.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/DisplayManager/DisplayManagerBase.cs b/src/BizHawk.Client.Common/DisplayManager/DisplayManagerBase.cs index acaf485ddd..706d613035 100644 --- a/src/BizHawk.Client.Common/DisplayManager/DisplayManagerBase.cs +++ b/src/BizHawk.Client.Common/DisplayManager/DisplayManagerBase.cs @@ -741,9 +741,11 @@ namespace BizHawk.Client.Common if (job.ChainOutsize.Width == 0 || job.ChainOutsize.Height == 0) { // this has to be a NOP, because lots of stuff will malfunction on a 0-sized viewport - if (_currentFilterProgram != null) + + if (job.Offscreen) { - UpdateSourceDrawingWork(job); //but we still need to do this, because of vsync + // for offscreen rendering, OffscreenBb is expected to be non-null + job.OffscreenBb = new(new(1, 1)); } return null;