From dbb73805db79d815c8b86a7d1c4e23a872ac5473 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 11 Jul 2020 16:18:13 -0400 Subject: [PATCH] error message cleanup Once everything is unified, we'll probably hit this path once in a while --- src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs | 2 ++ src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs index 1a5fe45124..16187dd332 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs @@ -20,6 +20,8 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCFX public Tst(CoreLoadParameters lp) : base(lp.Comm, "PCFX", "PC-FX Controller", lp.Settings, lp.SyncSettings) { + if (lp.Roms.Count > 0) + throw new InvalidOperationException("To load a PC-FX game, please load the CUE file and not the BIN file."); var firmwares = new Dictionary { { "FIRMWARE:pcfx.rom", ("PCFX", "BIOS") }, diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs index 7b7b81ec0f..de6e65d756 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs @@ -29,6 +29,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn public Saturnus(CoreLoadParameters lp) : base(lp.Comm, "SAT", "Saturn Controller", lp.Settings, lp.SyncSettings) { + if (lp.Roms.Count > 0) + throw new InvalidOperationException("To load a Saturn game, please load the CUE file and not the BIN file."); var firmwares = new Dictionary { { "FIRMWARE:$J", ("SAT", "J") },