StrikerX3/JXInput

Bugs in InputAxesDelta

Closed this issue · 1 comments

getDelta for LEFT_THUMBSTICK_X is returning the delta of getRXDelta()

public float getDelta(final XInputAxis axis) {
switch (axis) {
case LEFT_THUMBSTICK_X:
return getRXDelta();

getRawDelta has the same bug

public int getRawDelta(final XInputAxis axis) {
switch (axis) {
case LEFT_THUMBSTICK_X:
return getRXRawDelta();

Good catch. Fixing those right away.