Skip to content

Commit

Permalink
entirely disable mouse acceleration
Browse files Browse the repository at this point in the history
Apparently, some people have very strong opinions about this.
Thanks @ice44.
  • Loading branch information
fabiangreffrath committed Mar 3, 2020
1 parent 2da75c0 commit 2b9b043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/i_video.c
Expand Up @@ -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)
{
Expand Down

0 comments on commit 2b9b043

Please sign in to comment.