From 79b741b8692a1383279a524cfc197cb4037c9342 Mon Sep 17 00:00:00 2001 From: goyuken Date: Mon, 25 Aug 2014 00:14:14 +0000 Subject: [PATCH] sms: use standard message when bios is required but not supplied --- BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs index 1adf17dab3..c26383fb47 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs @@ -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."); }