Switch cores correctly, fixses #1939

This commit is contained in:
alyosha-tas 2020-04-20 08:59:19 -04:00
parent 831e62b8ee
commit ada61fae93
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ namespace BizHawk.Client.EmuHawk
return emulator switch return emulator switch
{ {
Snes9x _ => PromptToSwitchCore("Snes9x", "bsnes", () => Global.Config.PreferredCores["SNES"] = Cores.CoreNames.Bsnes), Snes9x _ => PromptToSwitchCore("Snes9x", "bsnes", () => Global.Config.PreferredCores["SNES"] = Cores.CoreNames.Bsnes),
QuickNES _ => PromptToSwitchCore("QuickNes", "NesHawk", () => Global.Config.PreferredCores["NES"] = Cores.CoreNames.QuickNes), QuickNES _ => PromptToSwitchCore("QuickNes", "NesHawk", () => Global.Config.PreferredCores["NES"] = Cores.CoreNames.NesHawk),
_ => true _ => true
}; };
} }