Display better error when a crash occurs
This commit is contained in:
parent
953986c055
commit
1c581a8a75
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ namespace Mesen.GUI.Forms
|
|||
InteropEmu.Run();
|
||||
_emuThread = null;
|
||||
} catch(Exception ex) {
|
||||
MessageBox.Show(ex.Message);
|
||||
MessageBox.Show(ex.ToString(), "Unexpected Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
});
|
||||
_emuThread.Start();
|
||||
|
|
Loading…
Add table
Reference in a new issue