mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 06:34:11 +00:00
oops?
This commit is contained in:
parent
5e8d69589d
commit
303581b798
1 changed files with 9 additions and 0 deletions
|
@ -91,6 +91,15 @@ Con_Printf (const char *fmt, ...)
|
|||
va_end (args);
|
||||
}
|
||||
|
||||
void
|
||||
Con_Print (const char *fmt, va_list args)
|
||||
{
|
||||
if (con_module)
|
||||
con_module->functions->console->pC_Print (fmt, args);
|
||||
else
|
||||
vfprintf (stdout, fmt, args);
|
||||
}
|
||||
|
||||
void
|
||||
Con_DPrintf (const char *fmt, ...)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue