This commit is contained in:
Bill Currie 2002-01-17 02:47:22 +00:00
parent 5e8d69589d
commit 303581b798

View file

@ -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, ...)
{