mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 18:15:36 +00:00
Removed redundant printout for "OnMouseMove called without moving the mouse"
This fixes #416. The problem with this printout (as explained in the issue) is that on Windows (at least for specific devices/OS) GetMouseMovePointsEx can return duplicate points, so it’s either adding a check in the Windows layer or remove the printout. Adding a check in the Windows layer looks redundant though, as this is already checked in NativeWindowBase, so removing the printout looks preferable.
This commit is contained in:
parent
1581ac7b8a
commit
51e2b3915c
|
@ -269,7 +269,6 @@ namespace OpenTK.Platform
|
||||||
|
|
||||||
if (e.XDelta == 0 && e.YDelta == 0)
|
if (e.XDelta == 0 && e.YDelta == 0)
|
||||||
{
|
{
|
||||||
Debug.WriteLine("OnMouseMove called without moving the mouse");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue