Fixed the weak Con_Print issue.

(Still need to thwap taniwha for doing an incomplete merge.)
This commit is contained in:
Zephaniah E. Hull 2001-03-31 14:41:13 +00:00
parent f5ae853de8
commit 8ef747124c

View file

@ -49,13 +49,15 @@
All console printing must go through this in order to be logged to disk All console printing must go through this in order to be logged to disk
If no console is visible, the notify window will pop up. If no console is visible, the notify window will pop up.
*/ */
void __attribute__ ((weak)) void
Con_Print (char *txt) QFutil_Con_Print (char *txt)
{ {
// echo to debugging console // echo to debugging console
Sys_Printf ("%s", txt); Sys_Printf ("%s", txt);
} }
void Con_Print (char *) __attribute ((weak, alias ("QFutil_Con_Print")));
/* /*
Con_Printf Con_Printf