forked from Clones/Controlify
✏️ Slightly increased the values the auto deadzone calibration gives you
This commit is contained in:
@ -167,7 +167,7 @@ public class ControllerCalibrationScreen extends Screen {
|
|||||||
private void applyDeadzones() {
|
private void applyDeadzones() {
|
||||||
deadzoneCalibration.forEach((i, data) -> {
|
deadzoneCalibration.forEach((i, data) -> {
|
||||||
var max = Arrays.stream(data).max().orElseThrow();
|
var max = Arrays.stream(data).max().orElseThrow();
|
||||||
controller.config().setDeadzone(i, (float) max + 0.05f);
|
controller.config().setDeadzone(i, (float) max + 0.08f);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user