When mGBA fails with missing firmware, throw MissingFirmwareException
This commit is contained in:
parent
c57cd97f56
commit
a357da360e
|
@ -34,7 +34,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
||||||
|
|
||||||
if (DeterministicEmulation != deterministic)
|
if (DeterministicEmulation != deterministic)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException("A BIOS is required for deterministic recordings!");
|
throw new MissingFirmwareException("A BIOS is required for deterministic recordings!");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!DeterministicEmulation && bios != null && !_syncSettings.RTCUseRealTime && !_syncSettings.SkipBios)
|
if (!DeterministicEmulation && bios != null && !_syncSettings.RTCUseRealTime && !_syncSettings.SkipBios)
|
||||||
|
|
Loading…
Reference in New Issue