idTech4.idConsole.AddToDedicatedBuffer C# (CSharp) Method

AddToDedicatedBuffer() private static method

private static AddToDedicatedBuffer ( string msg ) : void
msg string
return void
		private static void AddToDedicatedBuffer(string msg)
		{
			// TODO
			/*if ( win32.win_outputDebugString.GetBool() ) {
				OutputDebugString( msg );
			}
			if ( win32.win_outputEditString.GetBool() ) {*/
			idE.SystemConsole.Append(msg);
			/*}*/
		}