Merge pull request #9316 from marcelofg55/master
Fix possible crash in joy_axis (fixes #4944).
This commit is contained in:
commit
bda6f9c167
|
@ -874,6 +874,8 @@ void InputDefault::joy_axis(int p_device, int p_axis, const JoyAxis &p_value) {
|
|||
|
||||
_THREAD_SAFE_METHOD_;
|
||||
|
||||
ERR_FAIL_INDEX(p_axis, JOY_AXIS_MAX);
|
||||
|
||||
Joypad &joy = joy_names[p_device];
|
||||
|
||||
if (joy.last_axis[p_axis] == p_value.value) {
|
||||
|
|
Loading…
Reference in New Issue