mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fixed the weak Con_Print issue.
(Still need to thwap taniwha for doing an incomplete merge.)
This commit is contained in:
parent
f5ae853de8
commit
8ef747124c
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue