diff --git a/libs/util/console.c b/libs/util/console.c index 86331f8ac..faf0c1836 100644 --- a/libs/util/console.c +++ b/libs/util/console.c @@ -49,13 +49,15 @@ 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. */ -void __attribute__ ((weak)) -Con_Print (char *txt) +void +QFutil_Con_Print (char *txt) { // echo to debugging console Sys_Printf ("%s", txt); } +void Con_Print (char *) __attribute ((weak, alias ("QFutil_Con_Print"))); + /* Con_Printf