From 300022c68ccc59aedcc40ca17f70dbd2b5492f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E9=B8=BF?= Date: Sun, 16 Feb 2025 20:42:13 +0800 Subject: [PATCH] Speed up mouse speed. --- src/mouse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mouse.c b/src/mouse.c index 965e541..38038fe 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -89,8 +89,8 @@ enum screen_pos_e update_mouse_position(device_t *state, mouse_values_t *values) float movx = values->move_x; float movy = values->move_y; - movx = movx * (0.9 * 4); - movy = movy * (1.6 * 4); + movx = movx * (0.9 * 8); + movy = movy * (1.6 * 8); int offset_x = movx; int offset_y = movy;