diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-04-14 14:50:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 14:50:02 +0200 |
commit | 3d1d3ab3db7c1a3635d66792242ab8545c26984f (patch) | |
tree | f704641bbff992511415566b525f8b5638dd37a7 /modules | |
parent | 6b39980ea9f1ec9ece4975f63e6c5b49f3a40247 (diff) | |
parent | 9936abb3d525d84f0fa2e647a9ebd34b910d14be (diff) |
Merge pull request #47807 from Blackiris/fix-is-type-treated-as-address
Fix type argument in is_builtin which was treated as an address
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gdscript_byte_codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_byte_codegen.cpp b/modules/gdscript/gdscript_byte_codegen.cpp index b553dcede3..af2bfc33a7 100644 --- a/modules/gdscript/gdscript_byte_codegen.cpp +++ b/modules/gdscript/gdscript_byte_codegen.cpp @@ -391,7 +391,7 @@ void GDScriptByteCodeGenerator::write_type_test(const Address &p_target, const A } void GDScriptByteCodeGenerator::write_type_test_builtin(const Address &p_target, const Address &p_source, Variant::Type p_type) { - append(GDScriptFunction::OPCODE_IS_BUILTIN, 3); + append(GDScriptFunction::OPCODE_IS_BUILTIN, 2); append(p_source); append(p_target); append(p_type); |