Allow loading override.cfg from PCK files

This commit is contained in:
Aaron Franke 2022-07-11 16:58:27 -05:00
parent 3e0e84a54c
commit 9403173994
No known key found for this signature in database
GPG Key ID: 40A1750B977E56BF
1 changed files with 3 additions and 2 deletions

View File

@ -511,8 +511,9 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
if (found) {
Error err = _load_settings_text_or_binary("res://project.godot", "res://project.binary");
if (err == OK && !p_ignore_override) {
// Load override from location of the executable.
// Optional, we don't mind if it fails.
// Load overrides from the PCK and the executable location.
// Optional, we don't mind if either fails.
_load_settings_text("res://override.cfg");
_load_settings_text(exec_path.get_base_dir().plus_file("override.cfg"));
}
return err;