Another mouse acceleration attemp

This commit is contained in:
dschmenk 2013-12-01 17:39:48 -08:00
parent 7700845e32
commit 6adf18add2
1 changed files with 2 additions and 2 deletions

View File

@ -445,8 +445,8 @@ void sendrelxy(int fd, int x, int y)
x = ((x > 4) || (x < -4)) ? x * 2 : accel[x & 0x1F];
y = ((y > 4) || (y < -4)) ? y * 2 : accel[y & 0x1F];
#else
x = ((x > 3) || (x < -3)) ? x * 9 : (x < 0 ? -x * x : x * x);
y = ((y > 3) || (y < -3)) ? y * 9 : (y < 0 ? -y * y : y * y);
x = ((x > 1) || (x < -1)) ? x * 2 : x;
y = ((y > 1) || (y < -1)) ? y * 2 : y;
#endif
evrelx.value = x;
evrely.value = y;