From 2b9b04354ac1a0b110a5de1b8de98e66daae983b Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Tue, 3 Mar 2020 22:52:49 +0100 Subject: [PATCH] entirely disable mouse acceleration Apparently, some people have very strong opinions about this. Thanks @ice44. --- Source/i_video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/i_video.c b/Source/i_video.c index c72d2684..a21882c0 100644 --- a/Source/i_video.c +++ b/Source/i_video.c @@ -603,8 +603,8 @@ void I_GetEvent(void) // This is to combine all mouse movement for a tic into one mouse // motion event. -static const float mouse_acceleration = 2.0; -static const int mouse_threshold = 10; +static const float mouse_acceleration = 1.0; // 2.0; +static const int mouse_threshold = 0; // 10; static int AccelerateMouse(int val) {