diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-08 11:16:24 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-08 11:16:24 -0500 |
commit | 71fe3d96eac4e7990e5800e5c5b90890f864ea39 (patch) | |
tree | 343fe9b298026679cd5fde52293c14729c4e4445 /modules | |
parent | f31a2cc9c9c356e04436c9eb6d04c3cd006fb1b1 (diff) | |
parent | c41601fa9c3f71e8537e7d89acebbe723d81b5db (diff) | |
download | redot-engine-71fe3d96eac4e7990e5800e5c5b90890f864ea39.tar.gz |
Merge pull request #97951 from juanjp600/dotnet-dictionary-debug-view
Fix untyped dictionary .NET debug visualization showing keys as values
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/Dictionary.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Dictionary.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Dictionary.cs index 864815866a..db6961fd12 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Dictionary.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Dictionary.cs @@ -174,7 +174,7 @@ namespace Godot.Collections var keys = Array.CreateTakingOwnershipOfDisposableValue(keysArray); godot_array valuesArray; - NativeFuncs.godotsharp_dictionary_keys(ref self, out valuesArray); + NativeFuncs.godotsharp_dictionary_values(ref self, out valuesArray); var values = Array.CreateTakingOwnershipOfDisposableValue(valuesArray); int count = NativeFuncs.godotsharp_dictionary_count(ref self); |