From 9eb2fcc34c8b2142de854f8514cb4373c61da24b Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 12 Jun 2017 20:56:16 -0500 Subject: [PATCH] bsnes - remove profile sync setting and related code --- BizHawk.Client.EmuHawk/config/ProfileConfig.cs | 9 --------- .../Nintendo/SNES/LibsnesCore.ISettable.cs | 5 +---- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 14 +------------- 3 files changed, 2 insertions(+), 26 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/ProfileConfig.cs b/BizHawk.Client.EmuHawk/config/ProfileConfig.cs index 8ea9a81f3e..39dd789b94 100644 --- a/BizHawk.Client.EmuHawk/config/ProfileConfig.cs +++ b/BizHawk.Client.EmuHawk/config/ProfileConfig.cs @@ -142,9 +142,6 @@ namespace BizHawk.Client.EmuHawk // SNES Global.Config.SNES_InSnes9x = false; - var snesSettings = GetSyncSettings(); - snesSettings.Profile = "Compatibility"; - PutSyncSettings(snesSettings); // Genesis var genesisSettings = GetSyncSettings(); @@ -196,9 +193,6 @@ namespace BizHawk.Client.EmuHawk // SNES Global.Config.SNES_InSnes9x = false; - var snesSettings = GetSyncSettings(); - snesSettings.Profile = "Compatibility"; - PutSyncSettings(snesSettings); // Genesis var genesisSettings = GetSyncSettings(); @@ -251,9 +245,6 @@ namespace BizHawk.Client.EmuHawk // SNES Global.Config.SNES_InSnes9x = false; - var snesSettings = GetSyncSettings(); - snesSettings.Profile = "Compatibility"; - PutSyncSettings(snesSettings); // Genesis var genesisSettings = GetSyncSettings(); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.ISettable.cs index 1f93c3e0f9..0b6f12fbc5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.ISettable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.ISettable.cs @@ -28,8 +28,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES public bool PutSyncSettings(SnesSyncSettings o) { - bool ret = o.Profile != _syncSettings.Profile - || o.LeftPort != _syncSettings.LeftPort + bool ret = o.LeftPort != _syncSettings.LeftPort || o.RightPort != _syncSettings.RightPort || o.LimitAnalogChangeSensitivity != _syncSettings.LimitAnalogChangeSensitivity; @@ -67,8 +66,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES public class SnesSyncSettings { - public string Profile { get; set; } = "Compatibility"; // "Accuracy", and "Compatibility" are the other choicec, todo: make this an enum - public LibsnesControllerDeck.ControllerType LeftPort { get; set; } = LibsnesControllerDeck.ControllerType.Gamepad; public LibsnesControllerDeck.ControllerType RightPort { get; set; } = LibsnesControllerDeck.ControllerType.Gamepad; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 0d708f31e8..12ac934e7f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -199,19 +199,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES public string BoardName => "SGB"; } - public string CurrentProfile - { - get - { - // TODO: This logic will only work until Accuracy is ready, would we really want to override the user's choice of Accuracy with Compatibility? - if (_game.OptionValue("profile") == "Compatibility") - { - return "Compatibility"; - } - - return _syncSettings.Profile; - } - } + public string CurrentProfile => "Compatibility"; // We no longer support performance, and accuracy isn't worth the effort so we shall just hardcode this one private LibsnesApi Api { get; }