From f00a42bedd3b987ab8ff468f04c626c997e7bd33 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Sun, 14 Jul 2019 02:29:38 -0500 Subject: [PATCH] Slow down mouse wheel scrolling for analog stick --- DS4Windows/DS4Control/Mapping.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DS4Windows/DS4Control/Mapping.cs b/DS4Windows/DS4Control/Mapping.cs index 2d25560..bf1b989 100644 --- a/DS4Windows/DS4Control/Mapping.cs +++ b/DS4Windows/DS4Control/Mapping.cs @@ -2682,7 +2682,7 @@ namespace DS4Windows if (now >= oldnow + TimeSpan.FromMilliseconds(10) && !pressagain) { 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); } }