From 2d413fca1e85f96925b905224de78abbb5303bdb Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 29 Apr 2020 17:16:40 -0400 Subject: [PATCH] fix "melonDS doesn't work at all anymore #1963" --- .../Consoles/Nintendo/NDS/MelonDS_Settable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS_Settable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS_Settable.cs index 19d98f2db2..6265a98da7 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS_Settable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS_Settable.cs @@ -33,7 +33,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS public PutSettingsDirtyBits PutSettings(MelonSettings o) { bool screenChanged = false; - if (_settings != null) + if (o != null) { screenChanged |= _settings.ScaleFactor != o.ScaleFactor; screenChanged |= _settings.ScreenGap != o.ScreenGap;