update GB/GBC profile settings:

longplays - gambatte, require bios (per longplays request)
tas - gambatte, require bios, CGB in GBA (per tasvideos request)
This commit is contained in:
adelikat 2020-08-15 11:23:34 -05:00
parent 1f5128bf6b
commit 353ec518c7
1 changed files with 19 additions and 12 deletions

View File

@ -141,12 +141,11 @@ namespace BizHawk.Client.EmuHawk
_config.PreferredCores["NES"] = CoreNames.QuickNes;
// GB
{
var s = GetSyncSettings<Gameboy, Gameboy.GambatteSyncSettings>();
s.EnableBIOS = false;
// TODO: Do we want to set anything else here?
PutSyncSettings<Gameboy>(s);
}
_config.PreferredCores["GB"] = CoreNames.Gambatte;
_config.PreferredCores["GBC"] = CoreNames.Gambatte;
var s = GetSyncSettings<Gameboy, Gameboy.GambatteSyncSettings>();
s.EnableBIOS = false;
PutSyncSettings<Gameboy>(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<Gameboy, Gameboy.GambatteSyncSettings>();
s.EnableBIOS = true;
PutSyncSettings<Gameboy>(s);
}
private void SetTas()
@ -214,12 +220,13 @@ namespace BizHawk.Client.EmuHawk
_config.PreferredCores["NES"] = CoreNames.NesHawk;
// GB
{
var s = GetSyncSettings<Gameboy, Gameboy.GambatteSyncSettings>();
s.EnableBIOS = true;
// TODO: Do we want to set anything else here?
PutSyncSettings<Gameboy>(s);
}
_config.PreferredCores["GB"] = CoreNames.Gambatte;
_config.PreferredCores["GBC"] = CoreNames.Gambatte;
var s = GetSyncSettings<Gameboy, Gameboy.GambatteSyncSettings>();
s.EnableBIOS = true;
s.GBACGB = true;
PutSyncSettings<Gameboy>(s);
}
private void SetN64Tas()