Make _sc_ files work like ._sc_, fixes #7762

(cherry picked from commit 27bb6b5282)
This commit is contained in:
Bojidar Marinov 2017-02-09 12:26:18 +02:00 committed by Rémi Verschelde
parent ca2277f3f1
commit 9f536e3962

View file

@ -238,12 +238,20 @@ void EditorSettings::create() {
String exe_path = OS::get_singleton()->get_executable_path().get_base_dir();
DirAccess* d = DirAccess::create_for_path(exe_path);
if (d->file_exists(exe_path + "/._sc_")) {
bool self_contained = false;
if (d->file_exists(exe_path + "/._sc_")) {
self_contained = true;
extra_config->load(exe_path + "/._sc_");
} else if (d->file_exists(exe_path + "/_sc_")) {
self_contained = true;
extra_config->load(exe_path + "/_sc_");
}
if (self_contained) {
// editor is self contained
config_path = exe_path;
config_dir = "editor_data";
extra_config->load(exe_path + "/._sc_");
} else {
if (OS::get_singleton()->has_environment("APPDATA")) {