Skip to content

Commit

Permalink
Merge pull request #49649 from timothyqiu/project-settings-key
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga authored Jun 16, 2021
2 parents d36b220 + 06c0a5f commit 0cca7bb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions core/config/project_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -711,8 +711,7 @@ Error ProjectSettings::_save_settings_binary(const String &p_file, const Map<Str
file->store_32(count + 1);
//store how many properties are saved, add one for custom featuers, which must always go first
String key = CoreStringNames::get_singleton()->_custom_features;
file->store_32(key.length());
file->store_string(key);
file->store_pascal_string(key);

int len;
err = encode_variant(p_custom_features, nullptr, len, false);
Expand Down Expand Up @@ -749,8 +748,7 @@ Error ProjectSettings::_save_settings_binary(const String &p_file, const Map<Str
value = get(key);
}

file->store_32(key.length());
file->store_string(key);
file->store_pascal_string(key);

int len;
err = encode_variant(value, nullptr, len, true);
Expand Down

0 comments on commit 0cca7bb

Please sign in to comment.