sms: use standard message when bios is required but not supplied

This commit is contained in:
goyuken 2014-08-25 00:14:14 +00:00
parent 3aec45448c
commit 79b741b869
1 changed files with 1 additions and 1 deletions

View File

@ -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.");
}