Example #1
0
/*
=================
Sys_Print
=================
*/
void Sys_Print( const char *msg )
{
#if defined(VCMODS_MISC)&&defined(_WIN32)
	OutputDebugString(msg);
#endif
	CON_LogWrite( msg );
	CON_Print( msg );
}
Example #2
0
/*
=================
Sys_Print
=================
*/
void Sys_Print( const char *msg ) {
#if defined (_WIN32) && !defined (_DEBUG)
	Conbuf_AppendText( msg );
#else
	CON_LogWrite( msg );
	CON_Print( msg );
#endif
}
Example #3
0
/*
=================
Sys_Print
=================
*/
void Sys_Print(const char *msg)
{
#if defined (USE_WINDOWS_CONSOLE)
	Conbuf_AppendText(msg);
#else
	CON_LogWrite(msg);
	CON_Print(msg);
#endif
}
Example #4
0
/*
=================
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
}
Example #5
0
/*
=================
Sys_Print
=================
*/
void Sys_Print( const char *msg )
{
	CON_LogWrite( msg );
	CON_Print( msg );
}
Example #6
0
void
sysprint(const char *msg)
{
	CON_LogWrite(msg);
	CON_Print(msg);
}