diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-12-20 12:44:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-20 12:44:56 +0100 |
| commit | 48edf6333029fc961528892af190201197b44c40 (patch) | |
| tree | f56b1bf1009cebb3b23439bdefb47bb66169151e /core/variant_parser.cpp | |
| parent | 9abbf517ffd6358e3ea79a6be46a0dd979115a0b (diff) | |
| parent | e7e095da3fd9140cfbbe11dd178981633819d642 (diff) | |
Merge pull request #34472 from timothyqiu/quote-property
Fixes property names serialization 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); |