From 021b1639c22b324cf7e871b9edbd5e77625e5104 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 12 Jul 2020 13:48:46 -0400 Subject: [PATCH] Remove special code for UnsupportedGameException in RomLoader This shouldn't be needed anymore --- src/BizHawk.Client.Common/RomLoader.cs | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index b4132773b4..9ff50db16b 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -712,19 +712,11 @@ namespace BizHawk.Client.Common // all of the specific exceptions we're trying to catch here aren't expected to have inner exceptions, // so drill down in case we got a TargetInvocationException or something like that - while (ex.InnerException != null) ex = ex.InnerException; + while (ex.InnerException != null) + ex = ex.InnerException; // Specific hack here, as we get more cores of the same system, this isn't scalable - if (ex is UnsupportedGameException) - { - if (system == "NES") - { - DoMessageCallback("Unable to use quicknes, using NESHawk instead"); - } - - return LoadRom(path, nextComm, launchLibretroCore, recursiveCount + 1); - } - else if (ex is MissingFirmwareException) + if (ex is MissingFirmwareException) { DoLoadErrorCallback(ex.Message, system, path, Deterministic, LoadErrorType.MissingFirmware); }