sms: use standard message when bios is required but not supplied
This commit is contained in:
parent
3aec45448c
commit
79b741b869
|
@ -196,7 +196,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
|
|||
Port3E = 0xF7;
|
||||
|
||||
if (BiosRom == null && game["RequireBios"])
|
||||
CoreComm.Notify("BIOS image not available. This game requires BIOS to function.");
|
||||
throw new MissingFirmwareException("BIOS image not available. This game requires BIOS to function.");
|
||||
if (SyncSettings.UseBIOS && BiosRom == null)
|
||||
CoreComm.Notify("BIOS was selected, but rom image not available. BIOS not enabled.");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue