diff options
| author | Juan Linietsky | 2016-05-21 22:34:55 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-05-21 22:34:55 -0300 |
| commit | eacb8f04c4697b8123afeec03088eebb3c4b20bd (patch) | |
| tree | 8070f7807ec5d6a375df7184b151abbee8790608 /core/ustring.cpp | |
| parent | a75f8963380a1f6ae8501f21a1d3f3bef8a89d91 (diff) | |
| parent | 4c4d79e3c98182faf348f41f98d1cc3e5d843e69 (diff) | |
| download | godot-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.cpp | 2 |
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) { |
