Ejemplo n.º 1
0
/*
==================
CON_Print
==================
*/
void CON_Print( const char *msg )
{
	CON_Hide( );

	CON_WindowsColorPrint( msg );

	CON_Show( );
}
Ejemplo n.º 2
0
/*
==================
CON_Print
==================
*/
void CON_Print(char *string)
{
	CON_Hide();

	CON_WindowsColorPrint(string);

	CON_Show();
}
Ejemplo n.º 3
0
/*
==================
CON_Print
==================
*/
void CON_Print(const char *msg)
{
	if (com_ansiColor && com_ansiColor->integer)
	{
		CON_WindowsColorPrint(msg);
	}
	else
	{
		fputs(msg, stderr);
	}

	CON_Show();
}