/* ================== CON_Print ================== */ void CON_Print( const char *msg ) { CON_Hide( ); CON_WindowsColorPrint( msg ); CON_Show( ); }
/* ================== CON_Print ================== */ void CON_Print(char *string) { CON_Hide(); CON_WindowsColorPrint(string); CON_Show(); }
/* ================== CON_Print ================== */ void CON_Print(const char *msg) { if (com_ansiColor && com_ansiColor->integer) { CON_WindowsColorPrint(msg); } else { fputs(msg, stderr); } CON_Show(); }