diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-25 21:02:38 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-25 21:02:38 +0200 |
commit | e4fe194fe5fab49421c26dc26f4b8fc996a39e1e (patch) | |
tree | 662668ad0716a97883be6be33c4becf1cc5641c0 /core | |
parent | 9f768cb51941638cf6e4a595c1d29354ccf1289d (diff) |
Add newline after config_version and fix custom_features hint
Fixes #9818.
Diffstat (limited to 'core')
-rw-r--r-- | core/project_settings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp index 1a0a50a10f..0426af3fa0 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -602,7 +602,8 @@ Error ProjectSettings::_save_settings_text(const String &p_file, const Map<Strin file->store_string("config_version=" + itos(FORMAT_VERSION) + "\n"); if (p_custom_features != String()) - file->store_string("_custom_featores=\"" + p_custom_features + "\"\n"); + file->store_string("custom_features=\"" + p_custom_features + "\"\n"); + file->store_string("\n"); for (Map<String, List<String> >::Element *E = props.front(); E; E = E->next()) { |