diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-10-22 14:23:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 14:23:13 +0200 |
commit | 17cd5e845a1003e98d5a11681860b91c332c2e70 (patch) | |
tree | 390a48b1a757b57ce1709b32d4cc7adc503258d0 /core/project_settings.cpp | |
parent | a04db8eb11eaf6bcede821dbafbb25a2fe3e708f (diff) | |
parent | 37d515e99c2da449397511cbc9b25fee84dd66fc (diff) |
Merge pull request #42980 from KoBeWi/(ಥ-͜ʖಥ)
Favor project.binary over project.godot
Diffstat (limited to 'core/project_settings.cpp')
-rw-r--r-- | core/project_settings.cpp | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp index 90f56694c2..3829474626 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -629,19 +629,26 @@ Error ProjectSettings::_load_settings_text(const String &p_path) { } Error ProjectSettings::_load_settings_text_or_binary(const String &p_text_path, const String &p_bin_path) { - // Attempt first to load the text-based project.godot file - Error err_text = _load_settings_text(p_text_path); - if (err_text == OK) { + // Attempt first to load the binary project.godot file. + Error err = _load_settings_binary(p_bin_path); + if (err == OK) { + return OK; + } else if (err != ERR_FILE_NOT_FOUND) { + // If the file exists but can't be loaded, we want to know it. + ERR_PRINT("Couldn't load file '" + p_bin_path + "', error code " + itos(err) + "."); + return err; + } + + // Fallback to text-based project.godot file if binary was not found. + err = _load_settings_text(p_text_path); + if (err == OK) { return OK; - } else if (err_text != ERR_FILE_NOT_FOUND) { - // If the text-based file exists but can't be loaded, we want to know it - ERR_PRINT("Couldn't load file '" + p_text_path + "', error code " + itos(err_text) + "."); - return err_text; + } else if (err != ERR_FILE_NOT_FOUND) { + ERR_PRINT("Couldn't load file '" + p_text_path + "', error code " + itos(err) + "."); + return err; } - // Fallback to binary project.binary file if text-based was not found - Error err_bin = _load_settings_binary(p_bin_path); - return err_bin; + return err; } int ProjectSettings::get_order(const String &p_name) const { |