Don't lose stack trace before final catch. We like the message box to be huge and ugly for the user!

This commit is contained in:
adelikat 2013-12-14 06:26:05 +00:00
parent 15e547115c
commit bc3208ec89
1 changed files with 3 additions and 1 deletions

View File

@ -130,7 +130,7 @@ namespace BizHawk.Client.EmuHawk
}
}
#endif
throw e;
throw;
}
}
#if WINDOWS
@ -144,6 +144,8 @@ namespace BizHawk.Client.EmuHawk
{
message += "\n\nInner Exception:\n\n" + e.InnerException;
}
message += "\n\nStackTrace:\n" + e.StackTrace;
MessageBox.Show(message);
}
#if WINDOWS