From b364330f50604e1adbec0907e671a9fb06102058 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 5 Jun 2018 16:16:38 -0500 Subject: [PATCH] Fixed enhanced precision stick curves --- DS4Windows/DS4Control/Mapping.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS4Windows/DS4Control/Mapping.cs b/DS4Windows/DS4Control/Mapping.cs index 2159bb1..192aab4 100644 --- a/DS4Windows/DS4Control/Mapping.cs +++ b/DS4Windows/DS4Control/Mapping.cs @@ -783,7 +783,7 @@ namespace DS4Windows } else if (absX <= 0.75) { - outputX = absX - 0.24; + outputX = absX - 0.2344; } else if (absX > 0.75) { @@ -796,7 +796,7 @@ namespace DS4Windows } else if (absY <= 0.75) { - outputY = absY - 0.24; + outputY = absY - 0.2344; } else if (absY > 0.75) {