Slow down mouse wheel scrolling for analog stick

This commit is contained in:
Travis Nickles 2019-07-14 02:29:38 -05:00
parent 1eac0f9dd5
commit f00a42bedd

View File

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