From e7e095da3fd9140cfbbe11dd178981633819d642 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Fri, 20 Dec 2019 10:03:15 +0800 Subject: Encodes property names properly in project.godot --- core/variant_parser.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'core/variant_parser.cpp') 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); -- cgit v1.2.3