diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-11-18 13:47:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-18 13:47:32 +0100 |
commit | e7216d408530506bf0c4ab5eaf9b059c5598f303 (patch) | |
tree | 79023c9528936147468c19cd37d50099b14063b4 | |
parent | bae15cb90ed18ea36c68c6fff47ca69f91660d8a (diff) | |
parent | f6d16d55c6852c49eae181c2444d1f5bc0f3d04d (diff) |
Merge pull request #55072 from KoBeWi/untitled_goose_project
-rw-r--r-- | drivers/unix/os_unix.cpp | 2 | ||||
-rw-r--r-- | platform/windows/os_windows.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 1bc88a86f7..1ebc8cca5e 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -473,7 +473,7 @@ String OS_Unix::get_user_data_dir() const { } } - return ProjectSettings::get_singleton()->get_resource_path(); + return get_data_path().plus_file(get_godot_dir_name()).plus_file("app_userdata").plus_file("[unnamed project]"); } String OS_Unix::get_executable_path() const { diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 2c21390d73..d8d4e92d9d 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -760,7 +760,7 @@ String OS_Windows::get_user_data_dir() const { } } - return ProjectSettings::get_singleton()->get_resource_path(); + return get_data_path().plus_file(get_godot_dir_name()).plus_file("app_userdata").plus_file("[unnamed project]"); } String OS_Windows::get_unique_id() const { |