From 80a3b96fc56991a0f88a1d441ed1e3cebaf3307a Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 8 Feb 2022 12:13:40 +0100 Subject: [PATCH] Fix compile for 3.x. --- touch_button.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/touch_button.cpp b/touch_button.cpp index 7ed1cf8..6affd6b 100644 --- a/touch_button.cpp +++ b/touch_button.cpp @@ -108,7 +108,7 @@ void TouchButton::_gui_input(Ref p_event) { } #if VERSION_MAJOR <= 3 - BaseButton::_gui_input(ev); + BaseButton::_gui_input(p_event); #endif }