diff options
| author | Hubert Jarosz | 2016-05-21 15:29:25 +0200 |
|---|---|---|
| committer | Hubert Jarosz | 2016-05-21 15:29:25 +0200 |
| commit | 33403d91f77f1f34b19bff763391500bc9c2616c (patch) | |
| tree | 67b2f4f4f1d69b198af548a7358b98904d9581ae /core/ustring.cpp | |
| parent | b0a5347a1ceaff56e88d33fb13df2a91abae594f (diff) | |
| download | godot-33403d91f77f1f34b19bff763391500bc9c2616c.tar.gz godot-33403d91f77f1f34b19bff763391500bc9c2616c.tar.zst godot-33403d91f77f1f34b19bff763391500bc9c2616c.zip | |
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) { |
