mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +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");
|
dstring_appendstr (string, "\n");
|
||||||
SV_FinalMessage (string->str);
|
SV_FinalMessage (string->str);
|
||||||
|
|
||||||
if (con_module)
|
if (con_module) {
|
||||||
con_module->functions->console->pC_Print (error, argptr);
|
con_module->functions->console->pC_Print (error, argptr);
|
||||||
else
|
con_module->functions->console->pC_Print ("\n", 0);
|
||||||
|
} else {
|
||||||
Sys_Print (stderr, error, argptr);
|
Sys_Print (stderr, error, argptr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue