[Mac] Avoid calling into LegacyInputDriver
This commit is contained in:
parent
ff46455e56
commit
e093fd23f6
1 changed files with 1 additions and 1 deletions
|
@ -490,7 +490,7 @@ namespace OpenTK.Platform.MacOS
|
|||
case NSEventType.OtherMouseDragged:
|
||||
case NSEventType.MouseMoved:
|
||||
{
|
||||
Point p = InputDriver.Mouse[0].Position;
|
||||
Point p = new Point(MouseState.X, MouseState.Y);
|
||||
if (CursorVisible)
|
||||
{
|
||||
// Use absolute coordinates
|
||||
|
|
Loading…
Reference in a new issue