aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Marques2018-04-16 14:54:49 -0300
committerHein-Pieter van Braam2018-04-28 22:56:33 +0200
commit3acd6fb728b090f482e0ecb2faea1f9c9f770d4a (patch)
treeedc703795eb5dd8ec68a76c49c9482526547aaf5
parent94ddb499df4083351fbf47cbc32a2cca77f5d74b (diff)
downloadgodot-3acd6fb728b090f482e0ecb2faea1f9c9f770d4a.tar.gz
godot-3acd6fb728b090f482e0ecb2faea1f9c9f770d4a.tar.zst
godot-3acd6fb728b090f482e0ecb2faea1f9c9f770d4a.zip
Fix names of Variant operators
(cherry picked from commit fefee533ae0e55882bbb1a7c42e1da5dc6adb24b)
-rw-r--r--core/variant_op.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/variant_op.cpp b/core/variant_op.cpp
index 842f5f0af..03e7ffaaa 100644
--- a/core/variant_op.cpp
+++ b/core/variant_op.cpp
@@ -3715,8 +3715,9 @@ static const char *_op_names[Variant::OP_MAX] = {
"*",
"/",
"- (negation)",
+ "+ (positive)",
"%",
- "..",
+ "+ (concatenation)",
"<<",
">>",
"&",