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:
parent
44d7603622
commit
bbc9054517
|
@ -362,6 +362,8 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
if (e is MissingFirmwareException || e.InnerException is MissingFirmwareException)
|
||||
throw;
|
||||
exceptions.Add(e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue