You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix refactored Object::cast_to in NO_SAFE_CAST branch
This commit is contained in:
@@ -112,7 +112,7 @@ bool JavaClass::_call_method(JavaObject *p_instance, const StringName &p_method,
|
||||
|
||||
Ref<Reference> ref = *p_args[i];
|
||||
if (!ref.is_null()) {
|
||||
if (Object::cast_to<JavaObject>(ref)) {
|
||||
if (Object::cast_to<JavaObject>(ref.ptr())) {
|
||||
|
||||
Ref<JavaObject> jo = ref;
|
||||
//could be faster
|
||||
|
||||
Reference in New Issue
Block a user