Ensure joystick has been added or not already removed when processing input
This commit is contained in:
parent
1767507e69
commit
806e7d18d1
1 changed files with 3 additions and 0 deletions
|
@ -186,6 +186,9 @@ public class GodotInputHandler implements InputManager.InputDeviceListener {
|
|||
if (mJoystickIds.indexOfKey(deviceId) >= 0) {
|
||||
final int godotJoyId = mJoystickIds.get(deviceId);
|
||||
Joystick joystick = mJoysticksDevices.get(deviceId);
|
||||
if (joystick == null) {
|
||||
return true;
|
||||
}
|
||||
|
||||
for (int i = 0; i < joystick.axes.size(); i++) {
|
||||
final int axis = joystick.axes.get(i);
|
||||
|
|
Loading…
Reference in a new issue