diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs index a7fe05b758..93956de7a6 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs @@ -84,31 +84,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk public class GBSyncSettings { - [JsonIgnore] - public string Port1 = GBHawkControllerDeck.DefaultControllerName; - - public enum ControllerType - { - Tilt - } - - [JsonIgnore] - private ControllerType _GBController; - - [DisplayName("Tilt Controls")] - [Description("Choose Tilt Control mode, when Applicable (MBC7 games)")] - [DefaultValue(ControllerType.Tilt)] - public ControllerType GBController - { - get => _GBController; - set - { - if (value == ControllerType.Tilt) { Port1 = "Gameboy Controller + Tilt"; } - - _GBController = value; - } - } - public enum ConsoleModeType { Auto, diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs index 6a87a90315..4d516f9558 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs @@ -8,6 +8,8 @@ using BizHawk.Emulation.Cores.Consoles.Nintendo.Gameboy; using System.Runtime.InteropServices; using System.Collections.Generic; +using BizHawk.Common.ReflectionExtensions; + // TODO: mode1_disableint_gbc.gbc behaves differently between GBC and GBA, why? // TODO: Window Position A6 behaves differently // TODO: Verify open bus behaviour for bad SRAM accesses for other MBCs @@ -195,15 +197,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk var mppr = Setup_Mapper(romHashMD5, romHashSHA1); if (cart_RAM != null) { cart_RAM_vbls = new byte[cart_RAM.Length]; } - if (mppr == "MBC7") - { - _controllerDeck = new GBHawkControllerDeck(_syncSettings.Port1); - } - else - { - _controllerDeck = new GBHawkControllerDeck(GBHawkControllerDeck.DefaultControllerName); - } - + _controllerDeck = new(mppr is "MBC7" + ? typeof(StandardTilt).DisplayName() + : GBHawkControllerDeck.DefaultControllerName); + timer.Core = this; audio.Core = this; ppu.Core = this;