Raised number of ticks possible for analog mouse wheel

Related to issue #518.
This commit is contained in:
Travis Nickles 2018-12-26 22:27:01 -06:00
parent 83dae66bac
commit 23a25bc504

View File

@ -2466,7 +2466,7 @@ namespace DS4Windows
if (now >= oldnow + TimeSpan.FromMilliseconds(10) && !pressagain)
{
oldnow = now;
InputMethods.MouseWheel((int)(getByteMapping(device, control, cState, eState, tp) / 51f * (down ? -1 : 1)), 0);
InputMethods.MouseWheel((int)(getByteMapping(device, control, cState, eState, tp) / 1.5f * (down ? -1 : 1)), 0);
}
}