From 63f9de42a732a95415fc1ea5521fd7364dd54654 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 27 Sep 2020 09:10:15 -0500 Subject: [PATCH] Tas Profile - fix mistake of snes9x being the snes core instead of bsnes. Also turn off GBC in GBA setting, after discussing with tasvideos staff, this setting is specifically preferred to be false. --- src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs b/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs index e2ffad2209..88b024ae09 100644 --- a/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs +++ b/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs @@ -197,7 +197,7 @@ namespace BizHawk.Client.EmuHawk PutSyncSettings(n64Settings); // SNES - _config.PreferredCores["SNES"] = CoreNames.Snes9X; + _config.PreferredCores["SNES"] = CoreNames.Bsnes; // Genesis var genesisSettings = GetSyncSettings(); @@ -224,7 +224,7 @@ namespace BizHawk.Client.EmuHawk _config.PreferredCores["GBC"] = CoreNames.Gambatte; var s = GetSyncSettings(); s.EnableBIOS = true; - s.GBACGB = true; + s.GBACGB = false; PutSyncSettings(s); }