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:
parent
15e547115c
commit
bc3208ec89
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue