mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 06:33:16 +00:00
Fixed wrong break statement in GDFunction::call
This commit is contained in:
parent
0dbec3abbb
commit
0722df4829
@ -909,7 +909,7 @@ Variant GDFunction::call(GDInstance *p_instance, const Variant **p_args, int p_a
|
||||
gds = gds->base.ptr();
|
||||
E = gds->member_functions.find(*methodname);
|
||||
if (E)
|
||||
OPCODE_BREAK;
|
||||
break;
|
||||
}
|
||||
|
||||
Variant::CallError err;
|
||||
|
Loading…
Reference in New Issue
Block a user