1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Fix wrong method binds and registered class

This commit is contained in:
Ignacio Etcheverry
2019-04-06 16:12:59 +02:00
parent 74719b8748
commit 2f3328a039
5 changed files with 14 additions and 2 deletions

View File

@@ -192,7 +192,7 @@ MonoBoolean godot_icall_DynamicGodotObject_InvokeMember(Object *p_ptr, MonoStrin
*r_result = GDMonoMarshal::variant_to_mono_object(result);
return error.error == OK;
return error.error == Variant::CallError::CALL_OK;
}
MonoBoolean godot_icall_DynamicGodotObject_GetMember(Object *p_ptr, MonoString *p_name, MonoObject **r_result) {