Increase deadzone again

This commit is contained in:
SerpentSpirale 2021-09-06 23:25:13 +02:00
parent 88b1c3d9c3
commit a47361cba0

View File

@ -91,7 +91,7 @@ public class GamepadJoystick {
*/ */
public float getDeadzone() { public float getDeadzone() {
try{ try{
return Math.max(device.getMotionRange(horizontalAxis).getFlat() * 1.8f, 0.15f); return Math.max(device.getMotionRange(horizontalAxis).getFlat() * 1.9f, 0.2f);
}catch (Exception e){ }catch (Exception e){
return 0.2f; return 0.2f;
} }