Merge pull request #88268 from zaevi/dotnet/fix_64bit_promotion

C#: Fix missing CowData 64-bit promotion for `PackedInt32Array`.
This commit is contained in:
Rémi Verschelde 2024-02-13 11:25:17 +01:00
commit fb688b38d1
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -962,7 +962,7 @@ namespace Godot.NativeInterop
public readonly unsafe int Size
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => _ptr != null ? *(_ptr - 1) : 0;
get => _ptr != null ? (int)(*((ulong*)_ptr - 1)) : 0;
}
}