You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Save binary ProjectSettings key length properly
(cherry picked from commit 06c0a5f9f2)
This commit is contained in:
committed by
Rémi Verschelde
parent
f36a3c67e3
commit
c1b2bd6fb6
@@ -690,8 +690,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, NULL, len, false);
|
||||
@@ -728,8 +727,7 @@ Error ProjectSettings::_save_settings_binary(const String &p_file, const Map<Str
|
||||
else
|
||||
value = get(key);
|
||||
|
||||
file->store_32(key.length());
|
||||
file->store_string(key);
|
||||
file->store_pascal_string(key);
|
||||
|
||||
int len;
|
||||
err = encode_variant(value, NULL, len, true);
|
||||
|
||||
Reference in New Issue
Block a user