You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fixed wrong break statement in GDFunction::call
This commit is contained in:
@@ -909,7 +909,7 @@ Variant GDFunction::call(GDInstance *p_instance, const Variant **p_args, int p_a
|
|||||||
gds = gds->base.ptr();
|
gds = gds->base.ptr();
|
||||||
E = gds->member_functions.find(*methodname);
|
E = gds->member_functions.find(*methodname);
|
||||||
if (E)
|
if (E)
|
||||||
OPCODE_BREAK;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
Variant::CallError err;
|
Variant::CallError err;
|
||||||
|
|||||||
Reference in New Issue
Block a user