Rename signal caught message to be more obvious

This commit is contained in:
James R 2019-12-12 22:01:16 -08:00
parent a0d6dc30cb
commit d0c41a8d55
1 changed files with 2 additions and 2 deletions

View File

@ -299,10 +299,10 @@ static void I_ReportSignal(int num, int coredumped)
sigmsg = msg;
}
I_OutputMsg("\nsignal_handler() error: %s\n", sigmsg);
I_OutputMsg("\nProcess killed by signal: %s\n\n", sigmsg);
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
"Signal caught",
"Process killed by signal",
sigmsg, NULL);
}