- marked a few Printf calls in critical error paths as PRINT_NONOTIFY.
This commit is contained in:
parent
07f08de474
commit
ef887403cf
5 changed files with 7 additions and 8 deletions
|
|
@ -1231,14 +1231,14 @@ void D_DoomLoop ()
|
|||
{
|
||||
if (error.GetMessage ())
|
||||
{
|
||||
Printf (PRINT_BOLD, "\n%s\n", error.GetMessage());
|
||||
Printf (PRINT_NONOTIFY | PRINT_BOLD, "\n%s\n", error.GetMessage());
|
||||
}
|
||||
D_ErrorCleanup ();
|
||||
}
|
||||
catch (CVMAbortException &error)
|
||||
{
|
||||
error.MaybePrintMessage();
|
||||
Printf("%s", error.stacktrace.GetChars());
|
||||
Printf(PRINT_NONOTIFY, "%s", error.stacktrace.GetChars());
|
||||
D_ErrorCleanup();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue