From e838aa7953129187628a845b95af0c2dffd7de5d Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Thu, 8 Dec 2011 00:17:08 +0000 Subject: [PATCH] Use Debug.WriteLine instead of Debug.Print on a single-parameter string. Fixes compilation on mobile devices. --- Source/OpenTK/Platform/MacOS/CarbonGLNative.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs b/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs index de5ff7cd..01696252 100644 --- a/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs +++ b/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs @@ -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()