diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-08 19:00:45 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-08 19:03:17 -0300 |
commit | 176afb2feb7ed235bf9d7528ee3e8af092f12f90 (patch) | |
tree | 8519cfbd86626bbdb4969f6893e2ab1d6debab61 /core/io | |
parent | e291294c7981f108dbb8658976b109df1850d303 (diff) |
-Use simpler methods for parsing simple tags, fixes #3274
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/config_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/config_file.cpp b/core/io/config_file.cpp index a01e935baa..d79a3d1288 100644 --- a/core/io/config_file.cpp +++ b/core/io/config_file.cpp @@ -177,7 +177,7 @@ Error ConfigFile::load(const String& p_path) { next_tag.fields.clear(); next_tag.name=String(); - err = VariantParser::parse_tag_assign_eof(&stream,lines,error_text,next_tag,assign,value,NULL); + err = VariantParser::parse_tag_assign_eof(&stream,lines,error_text,next_tag,assign,value,NULL,true); if (err==ERR_FILE_EOF) return OK; else if (err!=OK) { |