1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Fix Array and Dictionary id() and dictionary test bug

This commit is contained in:
cdemirer
2021-12-30 13:14:09 +08:00
parent 9f058674ac
commit e2ed9d13eb
3 changed files with 3 additions and 3 deletions

View File

@@ -627,7 +627,7 @@ Variant Array::max() const {
}
const void *Array::id() const {
return _p->array.ptr();
return _p;
}
Array::Array(const Array &p_from, uint32_t p_type, const StringName &p_class_name, const Variant &p_script) {