diff --git a/src/win/win_mouse.c b/src/win/win_mouse.c index 09a27f052..2e91085ec 100644 --- a/src/win/win_mouse.c +++ b/src/win/win_mouse.c @@ -89,8 +89,8 @@ win_mouse_handle(PRAWINPUT raw) * seems to work fine for RDP on Windows 10 * Not sure about other environments. */ - mousestate.dx += (state.lLastX - x)/100; - mousestate.dy += (state.lLastY - y)/100; + mousestate.dx += (state.lLastX - x)/25; + mousestate.dy += (state.lLastY - y)/25; x=state.lLastX; y=state.lLastY; } else {