diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2017-09-24 20:22:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-24 20:22:53 +0200 |
commit | a1246512803d7be7affc75ca0a6730563225e40b (patch) | |
tree | 523252bd8fec6753dfd4f57f1d3f82de480ec351 /core/variant_op.cpp | |
parent | 41701ed04429e3fbcb0b50bfd3ae3bf52bdd915e (diff) | |
parent | 4d14d61bbcf0b33ee5e039858ccfe605430418ea (diff) | |
download | redot-engine-a1246512803d7be7affc75ca0a6730563225e40b.tar.gz |
Merge pull request #11549 from hpvb/fix-11543
Fix Dictionary set_named
Diffstat (limited to 'core/variant_op.cpp')
-rw-r--r-- | core/variant_op.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_op.cpp b/core/variant_op.cpp index ac671cc852..4065b6a844 100644 --- a/core/variant_op.cpp +++ b/core/variant_op.cpp @@ -1519,7 +1519,7 @@ void Variant::set_named(const StringName &p_index, const Variant &p_value, bool } break; default: { - set(p_index.operator String(), p_value, r_valid); + set(p_index.operator String(), p_value, &valid); } break; } |