From 1e8dd35451727014c77653cfdc0444527b86abfa Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 4 Mar 2025 11:49:35 +0800 Subject: [PATCH] Update mouse speed up scale. --- src/mouse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mouse.c b/src/mouse.c index 38038fe..6431d22 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 * 8); - movy = movy * (1.6 * 8); + movx = movx * (0.9 * 10); + movy = movy * (1.6 * 10); int offset_x = movx; int offset_y = movy;