aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde2016-08-08 18:23:43 +0200
committerGitHub2016-08-08 18:23:43 +0200
commit229b172977dce0fa2f32c184cc828ecc0228c671 (patch)
tree553e711767796990bab5bb5a780e81f32d1acaf4
parentc56ea7cf91879ac0521a4962eb9e258d45c6448a (diff)
parent03a4b8cbc86f6ba43d72840179271c9181482403 (diff)
downloadgodot-229b172977dce0fa2f32c184cc828ecc0228c671.tar.gz
godot-229b172977dce0fa2f32c184cc828ecc0228c671.tar.zst
godot-229b172977dce0fa2f32c184cc828ecc0228c671.zip
-rw-r--r--core/func_ref.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/func_ref.cpp b/core/func_ref.cpp
index 644d8b5b6..29b06ae9a 100644
--- a/core/func_ref.cpp
+++ b/core/func_ref.cpp
@@ -65,7 +65,7 @@ void FuncRef::_bind_methods() {
mi.arguments.push_back( PropertyInfo( Variant::NIL, "arg"+itos(i)));
defargs.push_back(Variant());
}
- ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func:Variant",&FuncRef::call_func,mi,defargs);
+ ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func",&FuncRef::call_func,mi,defargs);
}