entirely disable mouse acceleration

Apparently, some people have very strong opinions about this.
Thanks @ice44.
This commit is contained in:
Fabian Greffrath 2020-03-03 22:52:49 +01:00
parent 2da75c00fe
commit 2b9b04354a

View File

@ -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)
{