Use Debug.WriteLine instead of Debug.Print on a single-parameter string. Fixes compilation on mobile devices.
This commit is contained in:
parent
1e739bb4ff
commit
e838aa7953
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ namespace OpenTK.Platform.MacOS
|
||||||
|
|
||||||
ConnectEvents();
|
ConnectEvents();
|
||||||
|
|
||||||
System.Diagnostics.Debug.Print("Attached window events.");
|
System.Diagnostics.Debug.WriteLine("Attached window events.");
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConnectEvents()
|
void ConnectEvents()
|
||||||
|
|
Loading…
Reference in a new issue