fix copy/paste error for PCE in PromptToSwitchCore?

This commit is contained in:
zeromus 2020-06-07 16:06:01 -05:00
parent d28f827b06
commit 8fca454ebf
1 changed files with 1 additions and 1 deletions
src/BizHawk.Client.EmuHawk

View File

@ -47,7 +47,7 @@ namespace BizHawk.Client.EmuHawk
{
Snes9x _ => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes, () => GlobalWin.Config.PreferredCores["SNES"] = CoreNames.Bsnes),
QuickNES _ => PromptToSwitchCore(CoreNames.QuickNes, CoreNames.NesHawk, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk),
HyperNyma _ => PromptToSwitchCore(CoreNames.HyperNyma, CoreNames.TurboNyma, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk),
HyperNyma _ => PromptToSwitchCore(CoreNames.HyperNyma, CoreNames.TurboNyma, () => GlobalWin.Config.PreferredCores["PCE"] = CoreNames.TurboNyma),
_ => true
};
}