Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit ec2e777

Browse files
committed
see exit code as hex when checking for compiler crash
1 parent f224054 commit ec2e777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UI/MainWindow/MainWindowSPCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ await this.ShowMessageAsync(Program.Translations.GetLanguage("Error"),
202202
await this.ShowMessageAsync(Program.Translations.GetLanguage("Error"),
203203
"The SourcePawn compiler has crashed.\n" +
204204
"Try again, or file an issue at the SourcePawn GitHub repository describing your steps that lead to this instance in detail.\n" +
205-
$"Exit code: {process.ExitCode}", MessageDialogStyle.Affirmative,
205+
$"Exit code: {process.ExitCode:X}", MessageDialogStyle.Affirmative,
206206
MetroDialogOptions);
207207
LoggingControl.LogAction($"Compiler crash detected, file: {fileInfo.Name}", 2);
208208
InCompiling = false;

0 commit comments

Comments
 (0)