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

Merge pull request #56337 from cdemirer/fix-array-dictionary-id

This commit is contained in:
Rémi Verschelde
2022-01-23 00:46:53 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -631,7 +631,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) {