/* ================= Sys_Print ================= */ void Sys_Print( const char *msg ) { #if defined(VCMODS_MISC)&&defined(_WIN32) OutputDebugString(msg); #endif CON_LogWrite( msg ); CON_Print( msg ); }
/* ================= Sys_Print ================= */ void Sys_Print( const char *msg ) { #if defined (_WIN32) && !defined (_DEBUG) Conbuf_AppendText( msg ); #else CON_LogWrite( msg ); CON_Print( msg ); #endif }
/* ================= Sys_Print ================= */ void Sys_Print(const char *msg) { #if defined (USE_WINDOWS_CONSOLE) Conbuf_AppendText(msg); #else CON_LogWrite(msg); CON_Print(msg); #endif }
/* ================= Sys_Print ================= */ void Sys_Print(const char *msg) { #ifdef USE_WINDOWS_CONSOLE Conbuf_AppendText(msg); #else CON_LogWrite(msg); CON_Print(msg); #endif #if defined(LEGACY_DEBUG) && defined(_WIN32) OutputDebugString(msg); #endif }
/* ================= Sys_Print ================= */ void Sys_Print( const char *msg ) { CON_LogWrite( msg ); CON_Print( msg ); }
void sysprint(const char *msg) { CON_LogWrite(msg); CON_Print(msg); }