From f92387e13407b078f91131cd1a803e5fb70a5aa0 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 1 Aug 2021 11:09:09 +1000 Subject: [PATCH] Fix typo in SMS ctor that caused NREs fixes bcd47a1ad --- src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs index 2bf67258d5..b89d78aa4d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs @@ -214,10 +214,10 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem ser.Register(new SmsGpuView(Vdp)); } - _controllerDeck = new SMSControllerDeck(syncSettings.Port1, syncSettings.Port2, IsGameGear_C, syncSettings.UseKeyboard); + _controllerDeck = new SMSControllerDeck(SyncSettings.Port1, SyncSettings.Port2, IsGameGear_C, SyncSettings.UseKeyboard); // Sorta a hack but why not - PortDEEnabled = syncSettings.UseKeyboard && !IsGameGear_C; + PortDEEnabled = SyncSettings.UseKeyboard && !IsGameGear_C; _controllerDeck.SetRegion(_controller, _region == SmsSyncSettings.Regions.Japan); }