fixed crash on code that checks InputEvent

This commit is contained in:
Juan Linietsky 2017-05-23 08:13:11 -03:00
parent a77e53b0a5
commit 6161e731d0

View file

@ -57,7 +57,7 @@ bool InputEvent::is_pressed() const {
bool InputEvent::is_action(const StringName &p_action) const {
return InputMap::get_singleton()->event_is_action(Ref<InputEvent>(this), p_action);
return InputMap::get_singleton()->event_is_action(Ref<InputEvent>((InputEvent *)this), p_action);
}
bool InputEvent::is_action_pressed(const StringName &p_action) const {