diff --git a/BizHawk.MultiClient/Program.cs b/BizHawk.MultiClient/Program.cs index 6960386ade..ff67a90f6f 100644 --- a/BizHawk.MultiClient/Program.cs +++ b/BizHawk.MultiClient/Program.cs @@ -99,6 +99,11 @@ namespace BizHawk.MultiClient } catch (Exception e) { + string message = e.ToString(); + if (e.InnerException != null) + { + message += "\n\nInner Exception:\n\n" + e.InnerException; + } MessageBox.Show(e.ToString()); } #if WINDOWS