add sign comparison for joystick axis events in InputMap::_find_event

fixes #4400

(cherry picked from commit 3b12f9ea82)
This commit is contained in:
Hinsbart 2016-04-22 16:36:45 +02:00 committed by Rémi Verschelde
parent c523749662
commit 94b321822d
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ List<InputEvent>::Element *InputMap::_find_event(List<InputEvent> &p_list,const
} break;
case InputEvent::JOYSTICK_MOTION: {
same=(e.joy_motion.axis==p_event.joy_motion.axis);
same=(e.joy_motion.axis==p_event.joy_motion.axis && (e.joy_motion.axis_value < 0) == (p_event.joy_motion.axis_value < 0));
} break;
}