From 060d436a69e7e2f52ae80ae8db61125b65f8623e Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 7 Jun 2020 14:11:30 -0500 Subject: [PATCH] add turbo pce core to the movie "inaccurate core" nag list --- src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs b/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs index cc342e6f89..9c1c35a960 100644 --- a/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs +++ b/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs @@ -3,13 +3,13 @@ using System.Drawing; using System.IO; using System.Text; using System.Windows.Forms; -using BizHawk.Client.Common; using BizHawk.Client.EmuHawk.CustomControls; using BizHawk.Common; using BizHawk.Emulation.Common; +using BizHawk.Emulation.Cores.Consoles.NEC.PCE; using BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES; using BizHawk.Emulation.Cores.Nintendo.SNES9X; -using Cores = BizHawk.Emulation.Cores; +using BizHawk.Emulation.Cores; namespace BizHawk.Client.EmuHawk { @@ -45,8 +45,9 @@ namespace BizHawk.Client.EmuHawk return emulator switch { - Snes9x _ => PromptToSwitchCore("Snes9x", "bsnes", () => GlobalWin.Config.PreferredCores["SNES"] = Cores.CoreNames.Bsnes), - QuickNES _ => PromptToSwitchCore("QuickNes", "NesHawk", () => GlobalWin.Config.PreferredCores["NES"] = Cores.CoreNames.NesHawk), + Snes9x _ => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes, () => GlobalWin.Config.PreferredCores["SNES"] = CoreNames.Bsnes), + QuickNES _ => PromptToSwitchCore(CoreNames.QuickNes, CoreNames.NesHawk, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk), + TerboGrafixSanic _ => PromptToSwitchCore(CoreNames.TurboTurboNyma, CoreNames.TurboNyma, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk), _ => true }; }