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()