aboutsummaryrefslogtreecommitdiff
path: root/core/ustring.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2016-05-21 22:34:55 -0300
committerJuan Linietsky2016-05-21 22:34:55 -0300
commiteacb8f04c4697b8123afeec03088eebb3c4b20bd (patch)
tree8070f7807ec5d6a375df7184b151abbee8790608 /core/ustring.cpp
parenta75f8963380a1f6ae8501f21a1d3f3bef8a89d91 (diff)
parent4c4d79e3c98182faf348f41f98d1cc3e5d843e69 (diff)
downloadgodot-eacb8f04c4697b8123afeec03088eebb3c4b20bd.tar.gz
godot-eacb8f04c4697b8123afeec03088eebb3c4b20bd.tar.zst
godot-eacb8f04c4697b8123afeec03088eebb3c4b20bd.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r--core/ustring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp
index c2520a7a8..a039ba11c 100644
--- a/core/ustring.cpp
+++ b/core/ustring.cpp
@@ -3635,7 +3635,7 @@ String String::percent_decode() const {
CharString cs = utf8();
for(int i=0;i<cs.length();i++) {
-
+
uint8_t c = cs[i];
if (c=='%' && i<length()-2) {