diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2019-12-20 10:03:15 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2019-12-20 10:42:08 +0800 |
commit | e7e095da3fd9140cfbbe11dd178981633819d642 (patch) | |
tree | 02dcd052616cfc5c7581581dda2843365b275480 /core/variant_parser.cpp | |
parent | 2a4c528d067826dd1af865c93c3dc945c9a0e196 (diff) |
Encodes property names properly in project.godot
Diffstat (limited to 'core/variant_parser.cpp')
-rw-r--r-- | core/variant_parser.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/variant_parser.cpp b/core/variant_parser.cpp index fe2c981c3c..9a5f9c9ede 100644 --- a/core/variant_parser.cpp +++ b/core/variant_parser.cpp @@ -1530,9 +1530,6 @@ Error VariantParser::parse_tag_assign_eof(Stream *p_stream, int &line, String &r } else if (c != '=') { what += String::chr(c); } else { - if (p_stream->is_utf8()) { - what.parse_utf8(what.ascii(true).get_data()); - } r_assign = what; Token token; get_token(p_stream, token, line, r_err_str); |