1
0
forked from Clones/Controlify

✏️ Slightly increased the values the auto deadzone calibration gives you

This commit is contained in:
isXander
2023-08-11 00:00:29 +01:00
parent 58fe5c7043
commit ea451e2e16

View File

@ -167,7 +167,7 @@ public class ControllerCalibrationScreen extends Screen {
private void applyDeadzones() {
deadzoneCalibration.forEach((i, data) -> {
var max = Arrays.stream(data).max().orElseThrow();
controller.config().setDeadzone(i, (float) max + 0.05f);
controller.config().setDeadzone(i, (float) max + 0.08f);
});
}