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.
This commit is contained in:
nattthebear 2020-08-24 15:52:49 -04:00 committed by GitHub
parent 44d7603622
commit bbc9054517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -362,6 +362,8 @@ namespace BizHawk.Client.Common
}
catch (Exception e)
{
if (e is MissingFirmwareException || e.InnerException is MissingFirmwareException)
throw;
exceptions.Add(e);
}
}