From 353ec518c73e690c82f3a6972080999cbfbe6a21 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 15 Aug 2020 11:23:34 -0500 Subject: [PATCH] update GB/GBC profile settings: longplays - gambatte, require bios (per longplays request) tas - gambatte, require bios, CGB in GBA (per tasvideos request) --- .../config/ProfileConfig.cs | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs b/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs index 68135fd73c..e2ffad2209 100644 --- a/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs +++ b/src/BizHawk.Client.EmuHawk/config/ProfileConfig.cs @@ -141,12 +141,11 @@ namespace BizHawk.Client.EmuHawk _config.PreferredCores["NES"] = CoreNames.QuickNes; // GB - { - var s = GetSyncSettings(); - s.EnableBIOS = false; - // TODO: Do we want to set anything else here? - PutSyncSettings(s); - } + _config.PreferredCores["GB"] = CoreNames.Gambatte; + _config.PreferredCores["GBC"] = CoreNames.Gambatte; + var s = GetSyncSettings(); + s.EnableBIOS = false; + PutSyncSettings(s); } private void SetLongPlay() @@ -170,6 +169,13 @@ namespace BizHawk.Client.EmuHawk // NES _config.PreferredCores["NES"] = CoreNames.NesHawk; + + // GB + _config.PreferredCores["GB"] = CoreNames.Gambatte; + _config.PreferredCores["GBC"] = CoreNames.Gambatte; + var s = GetSyncSettings(); + s.EnableBIOS = true; + PutSyncSettings(s); } private void SetTas() @@ -214,12 +220,13 @@ namespace BizHawk.Client.EmuHawk _config.PreferredCores["NES"] = CoreNames.NesHawk; // GB - { - var s = GetSyncSettings(); - s.EnableBIOS = true; - // TODO: Do we want to set anything else here? - PutSyncSettings(s); - } + _config.PreferredCores["GB"] = CoreNames.Gambatte; + _config.PreferredCores["GBC"] = CoreNames.Gambatte; + var s = GetSyncSettings(); + s.EnableBIOS = true; + s.GBACGB = true; + PutSyncSettings(s); + } private void SetN64Tas()