mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
alpha doesn't like 0 for va_list :/
This commit is contained in:
parent
7ebede0517
commit
37335f4ec3
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ SV_Error (const char *error, va_list argptr)
|
|||
|
||||
if (con_module) {
|
||||
con_module->functions->console->pC_Print (error, argptr);
|
||||
con_module->functions->console->pC_Print ("\n", 0);
|
||||
con_module->functions->console->pC_Print ("\n", argptr);
|
||||
} else {
|
||||
Sys_Print (stderr, error, argptr);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue