Display better error when a crash occurs

This commit is contained in:
Souryo 2016-01-28 21:40:30 -05:00
parent 953986c055
commit 1c581a8a75

View file

@ -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();