diff --git a/modules/ui_extensions/bs_input_event_key.cpp b/modules/ui_extensions/bs_input_event_key.cpp index bd747c9e8..ed3407662 100644 --- a/modules/ui_extensions/bs_input_event_key.cpp +++ b/modules/ui_extensions/bs_input_event_key.cpp @@ -51,8 +51,7 @@ void BSInputEventKey::from_input_event_key(const Ref event) { set_echo(event->is_echo()); } -bool BSInputEventKey::action_match(const Ref &p_event, bool *p_pressed, float *p_strength, float p_deadzone) const { - +bool BSInputEventKey::action_match(const Ref &p_event, bool p_exact_match, bool *p_pressed, float *p_strength, float *p_raw_strength, float p_deadzone) const { Ref key = p_event; if (key.is_null()) return false; diff --git a/modules/ui_extensions/bs_input_event_key.h b/modules/ui_extensions/bs_input_event_key.h index ff3fafdc1..4919c2753 100644 --- a/modules/ui_extensions/bs_input_event_key.h +++ b/modules/ui_extensions/bs_input_event_key.h @@ -36,7 +36,7 @@ class BSInputEventKey : public InputEventKey { public: void from_input_event_key(const Ref p_event); - virtual bool action_match(const Ref &p_event, bool *p_pressed, float *p_strength, float p_deadzone) const; + virtual bool action_match(const Ref &p_event, bool p_exact_match, bool *p_pressed, float *p_strength, float *p_raw_strength, float p_deadzone) const; BSInputEventKey();