mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 16:55:39 +00:00
Minor cosmetic change.
This commit is contained in:
parent
4d7c6b2a31
commit
2ab661a472
|
@ -62,7 +62,6 @@ namespace OpenTK.Platform.Windows
|
||||||
//case WindowMessage.NCMOUSEMOVE:
|
//case WindowMessage.NCMOUSEMOVE:
|
||||||
mouse.X = msg.LParam.ToInt32() & 0x0000FFFF;
|
mouse.X = msg.LParam.ToInt32() & 0x0000FFFF;
|
||||||
mouse.Y = (int)(msg.LParam.ToInt32() & 0xFFFF0000) >> 16;
|
mouse.Y = (int)(msg.LParam.ToInt32() & 0xFFFF0000) >> 16;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case WindowMessage.MOUSEWHEEL:
|
case WindowMessage.MOUSEWHEEL:
|
||||||
|
|
Loading…
Reference in a new issue