예제 #1
0
/*
==================
CON_Print
==================
*/
void CON_Print( const char *msg )
{
	CON_Hide( );

	CON_WindowsColorPrint( msg );

	CON_Show( );
}
예제 #2
0
파일: con_win32.c 프로젝트: raynorpat/cake
/*
==================
CON_Print
==================
*/
void CON_Print(char *string)
{
	CON_Hide();

	CON_WindowsColorPrint(string);

	CON_Show();
}
예제 #3
0
파일: con_win32.c 프로젝트: Ododo/etlegacy
/*
==================
CON_Print
==================
*/
void CON_Print(const char *msg)
{
	if (com_ansiColor && com_ansiColor->integer)
	{
		CON_WindowsColorPrint(msg);
	}
	else
	{
		fputs(msg, stderr);
	}

	CON_Show();
}