diff options
author | Andrea Catania <info@andreacatania.com> | 2018-04-06 09:09:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-06 09:09:40 +0200 |
commit | 2f9354016fa8455cf6731be8e2c8c79d7e5fdb89 (patch) | |
tree | 63ac035cec1939539a1b97363bb333cd283e003e /core | |
parent | ec110076caca7a75ffb4795c32362bc52151dbcc (diff) |
Fixed signal input variable name
Diffstat (limited to 'core')
-rw-r--r-- | core/os/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/input.cpp b/core/os/input.cpp index 3089ab2ce3..1d7cd7c791 100644 --- a/core/os/input.cpp +++ b/core/os/input.cpp @@ -111,7 +111,7 @@ void Input::_bind_methods() { BIND_ENUM_CONSTANT(CURSOR_HSPLIT); BIND_ENUM_CONSTANT(CURSOR_HELP); - ADD_SIGNAL(MethodInfo("joy_connection_changed", PropertyInfo(Variant::INT, "index"), PropertyInfo(Variant::BOOL, "connected"))); + ADD_SIGNAL(MethodInfo("joy_connection_changed", PropertyInfo(Variant::INT, "device"), PropertyInfo(Variant::BOOL, "connected"))); } void Input::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const { |