Improve display of errors from Cheat Code Converter

This commit is contained in:
YoshiRulz 2025-03-03 13:24:00 +10:00
parent fa15e35603
commit 7f25044498
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@ namespace BizHawk.Client.EmuHawk
}
catch (Exception ex)
{
DialogController.ShowMessageBox($"An Error occured: {ex.GetType()}", "Error", EMsgBoxIcon.Error);
using ExceptionBox dialog = new(ex);
this.ShowDialogAsChild(dialog);
}
}