From cfdf607373182d8814fd79f86ea3cf1a74381097 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 22 Oct 2023 01:05:32 -0700 Subject: [PATCH] fix #3807 --- src/BizHawk.Client.Common/DisplayManager/Filters/Gui.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/DisplayManager/Filters/Gui.cs b/src/BizHawk.Client.Common/DisplayManager/Filters/Gui.cs index 68ed283e9a..86d32ef0ca 100644 --- a/src/BizHawk.Client.Common/DisplayManager/Filters/Gui.cs +++ b/src/BizHawk.Client.Common/DisplayManager/Filters/Gui.cs @@ -375,7 +375,9 @@ namespace BizHawk.Client.Common.Filters if (InputSize == OutputSize) // any reason we need to check vx and vy? { - Nop = true; + // Yes, this is not supposed to be Nop, which has different meaning + // (yes, this system is a mess, need to clean this up at some point) + IsNop = true; } }