mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-25 20:11:10 +00:00
[Linux] Fixed OnMouseMove being called without movement
This commit is contained in:
parent
a38e267156
commit
07d496d181
|
@ -290,7 +290,7 @@ namespace OpenTK.Platform.Linux
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (X != previous_mouse.X || Y != previous_mouse.Y)
|
if (x != previous_mouse.X || y != previous_mouse.Y)
|
||||||
{
|
{
|
||||||
OnMouseMove(x, y);
|
OnMouseMove(x, y);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue