XNA: XBox Print fix
Monkey Forums/Monkey Bug Reports/XNA: XBox Print fix
| ||
Hi! To route Print output from 360 target to visual studio debugger the following code is needed. modules/monkey/native/lang.cs[36] public static int Print( String str ){ Console.WriteLine( str ); System.Diagnostics.Debug.WriteLine(str); return 0; } I am unable to work out how to run app using 360 target directly from Ted so not sure if this doesn't break something there. |