From bbc90545172f45990fd697bbbb2f4d3521b3f757 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 24 Aug 2020 15:52:49 -0400 Subject: [PATCH] rohmloader tweak (#2330) When a missingfirmwareexception is encountered, do not fallback. It's presumed that these cases are fixable by the end user. Absolutely does not in any way fix #2327 - the user was emphatic that they had the BIOS file, so they must have hit some other situation. --- src/BizHawk.Client.Common/RomLoader.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index 4afb74707e..5d0286b184 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -362,6 +362,8 @@ namespace BizHawk.Client.Common } catch (Exception e) { + if (e is MissingFirmwareException || e.InnerException is MissingFirmwareException) + throw; exceptions.Add(e); } }