diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-07-17 21:05:38 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-07-17 22:18:58 -0300 |
commit | bbada82f8088e18b663f087484fcbb662dd76a5a (patch) | |
tree | 5ea77e84771dd4502cef44642001a689fab3cd87 /platform/windows/os_windows.cpp | |
parent | f36cd77feb9790847c6123eccfa18be74fc89b32 (diff) | |
download | redot-engine-bbada82f8088e18b663f087484fcbb662dd76a5a.tar.gz |
-Reorganized all properties of project settings (Sorry, Again).
(Lot's of bloat accumulated, so it was time for clean up.)
-Made EditorSettings and ProjectSettings search more useful (search in sections too)
Diffstat (limited to 'platform/windows/os_windows.cpp')
-rw-r--r-- | platform/windows/os_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 2daf580c0d..36d6cd8565 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -2229,7 +2229,7 @@ String OS_Windows::get_data_dir() const { if (has_environment("APPDATA")) { - bool use_godot = GlobalConfig::get_singleton()->get("application/use_shared_user_dir"); + bool use_godot = GlobalConfig::get_singleton()->get("application/config/use_shared_user_dir"); if (!use_godot) return (OS::get_singleton()->get_environment("APPDATA") + "/" + an).replace("\\", "/"); else |