From 33fed48277adfba0c6e3757954505c543be01c9a Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 29 Jan 2021 04:41:23 +1100 Subject: [PATCH] [client] app: fix broken mouse sensitivity --- client/src/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app.c b/client/src/app.c index de732128..a625c8ee 100644 --- a/client/src/app.c +++ b/client/src/app.c @@ -188,7 +188,7 @@ void app_handleMouseGrabbed(double ex, double ey) return; int x, y; - if (g_params.rawMouse && !g_cursor.useScale) + if (g_params.rawMouse && !g_cursor.sens) { /* raw unscaled input are always round numbers */ x = floor(ex);