Fix picking GBhawk core

This commit is contained in:
alyosha-tas 2020-05-25 22:33:15 -04:00
parent 6da864f4f7
commit 9be42c5c69
1 changed files with 2 additions and 2 deletions

View File

@ -1318,9 +1318,9 @@ namespace BizHawk.Client.EmuHawk
private void GBCorePick_Click(object sender, EventArgs e)
{
Config.PreferredCores["PCE"] = CoreNames.TurboNyma;
Config.PreferredCores["GB"] = CoreNames.GbHawk;
if (Emulator.SystemId == "PCE" || Emulator.SystemId == "PCECD")
if (Emulator.SystemId == "GB" || Emulator.SystemId == "GBC")
{
FlagNeedsReboot();
}