summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/String.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/String.cpp b/src/core/String.cpp
index 7340b6d..65d210f 100644
--- a/src/core/String.cpp
+++ b/src/core/String.cpp
@@ -135,7 +135,7 @@ void String::operator+=(const String &s) {
}
void String::operator+=(const wchar_t c) {
- // @Todo
+ _godot_string = godot::api->godot_string_operator_plus(&_godot_string, &(String(c)._godot_string));
}
bool String::operator<(const String &s) const {