diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2016-01-18 13:54:19 +1000 |
---|---|---|
committer | Jonas Ådahl <jadahl@gmail.com> | 2016-01-19 10:53:16 +0800 |
commit | 60fb1c4ce8aa7b0bfd804e9a7a6631a528aaeb50 (patch) | |
tree | 2b5db7c9fab5cc6ecdf7bea031f9bf2b9e690452 | |
parent | e1434d3ca8b69a9067ea064dffe2d16e966f60e2 (diff) |
compositor-rdp: update link to wheel delta explanation
The previous one is a 404 now.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
-rw-r--r-- | src/compositor-rdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compositor-rdp.c b/src/compositor-rdp.c index 33805c1d..1bf744cb 100644 --- a/src/compositor-rdp.c +++ b/src/compositor-rdp.c @@ -975,7 +975,7 @@ xf_mouseEvent(rdpInput *input, UINT16 flags, UINT16 x, UINT16 y) * The RDP specs says the lower bits of flags contains the "the number of rotation * units the mouse wheel was rotated". * - * http://blogs.msdn.com/b/oldnewthing/archive/2013/01/23/10387366.aspx explains the 120 value + * https://blogs.msdn.microsoft.com/oldnewthing/20130123-00/?p=5473 explains the 120 value */ axis = (DEFAULT_AXIS_STEP_DISTANCE * (flags & 0xff)) / 120; if (flags & PTR_FLAGS_WHEEL_NEGATIVE) |