diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-05-22 12:07:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-22 12:07:57 +0200 |
commit | 5fa3204008cffb2c69e3f17a18babe441d704b3d (patch) | |
tree | f58816a6754b2f47e9e5eeaa1e79fae868bb9003 | |
parent | db084811b4139c1d8a3c68730ae042d27d7f8675 (diff) | |
parent | c1e733466bf8cd1dfe44787247c9ee54f4f85ae6 (diff) |
Merge pull request #29096 from karroffel/gdnative-variant-evaluate-fix
[GDNative] fix godot_variant_evaluate function
-rw-r--r-- | modules/gdnative/gdnative/variant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/gdnative/variant.cpp b/modules/gdnative/gdnative/variant.cpp index 8f0d5a2db4..ac4d5a86b2 100644 --- a/modules/gdnative/gdnative/variant.cpp +++ b/modules/gdnative/gdnative/variant.cpp @@ -518,7 +518,7 @@ void GDAPI godot_variant_evaluate(godot_variant_operator p_op, const godot_varia const Variant *a = (const Variant *)p_a; const Variant *b = (const Variant *)p_b; Variant *ret = (Variant *)r_ret; - Variant::evaluate(op, a, b, *ret, *r_valid); + Variant::evaluate(op, *a, *b, *ret, *r_valid); } #ifdef __cplusplus |