Ver código fonte

fixed crash on code that checks InputEvent

Juan Linietsky 8 anos atrás
pai
commit
6161e731d0
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      core/os/input_event.cpp

+ 1 - 1
core/os/input_event.cpp

@@ -57,7 +57,7 @@ bool InputEvent::is_pressed() const {
 
 
 bool InputEvent::is_action(const StringName &p_action) 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 {
 bool InputEvent::is_action_pressed(const StringName &p_action) const {