diff --git a/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs b/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs index 8027e3f9..53fb2962 100644 --- a/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs +++ b/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs @@ -507,7 +507,7 @@ namespace OpenTK.Platform.MacOS p = new Point( MathHelper.Clamp((int)Math.Round(p.X + dx), 0, Width), - MathHelper.Clamp((int)Math.Round(p.Y - dy), 0, Height)); + MathHelper.Clamp((int)Math.Round(p.Y + dy), 0, Height)); } InputDriver.Mouse[0].Position = p;