Use Debug.WriteLine instead of Debug.Print on a single-parameter string. Fixes compilation on mobile devices.

This commit is contained in:
the_fiddler 2011-12-08 00:17:08 +00:00
parent 1e739bb4ff
commit e838aa7953

View file

@ -209,7 +209,7 @@ namespace OpenTK.Platform.MacOS
ConnectEvents();
System.Diagnostics.Debug.Print("Attached window events.");
System.Diagnostics.Debug.WriteLine("Attached window events.");
}
void ConnectEvents()