浏览代码

GDScript crash on builtin type constructor fix

Fix: #41848
Thakee Nathees 5 年之前
父节点
当前提交
279a11bbda
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      modules/gdscript/gdscript_byte_codegen.cpp

+ 1 - 0
modules/gdscript/gdscript_byte_codegen.cpp

@@ -529,6 +529,7 @@ void GDScriptByteCodeGenerator::write_construct(const Address &p_target, Variant
 		append(p_arguments[i]);
 	}
 	append(p_target);
+	alloc_call(p_arguments.size());
 }
 
 void GDScriptByteCodeGenerator::write_construct_array(const Address &p_target, const Vector<Address> &p_arguments) {