mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
forgot to fix the server error printing
This commit is contained in:
parent
1b550c80b1
commit
69c6bb767b
1 changed files with 4 additions and 2 deletions
|
@ -260,10 +260,12 @@ SV_Error (const char *error, va_list argptr)
|
|||
dstring_appendstr (string, "\n");
|
||||
SV_FinalMessage (string->str);
|
||||
|
||||
if (con_module)
|
||||
if (con_module) {
|
||||
con_module->functions->console->pC_Print (error, argptr);
|
||||
else
|
||||
con_module->functions->console->pC_Print ("\n", 0);
|
||||
} else {
|
||||
Sys_Print (stderr, error, argptr);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue