diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index a9a154dba7..67854c7e1c 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1549,7 +1549,7 @@ namespace BizHawk.MultiClient } if (nextEmulator == null) - throw new Exception(); + throw new Exception("No core could load the rom."); nextEmulator.CoreInputComm = Global.CoreInputComm; } catch (Exception ex) @@ -1558,7 +1558,7 @@ namespace BizHawk.MultiClient return false; } - if (nextEmulator == null) throw new Exception(); + if (nextEmulator == null) throw new Exception("No core could load the rom."); CloseGame(); Global.Emulator.Dispose();