summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-05-31 11:02:19 +0200
committerGitHub <noreply@github.com>2021-05-31 11:02:19 +0200
commit596eb783fe34cccd9e9b9c214028033137fa26ea (patch)
tree98e0fa3e8bfbda7f21454783454b0b23c7849bb0 /modules/mono
parentf7bcada709d9b79834b8984cdccace06aa5c9006 (diff)
parent0d2e02945b07073ed8c76ca118e36da825c0c1ec (diff)
Merge pull request #49050 from reduz/implement-spirv-cache
Implement shader caching
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/godotsharp_dirs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/godotsharp_dirs.cpp b/modules/mono/godotsharp_dirs.cpp
index 020a40575c..68134b9b20 100644
--- a/modules/mono/godotsharp_dirs.cpp
+++ b/modules/mono/godotsharp_dirs.cpp
@@ -63,8 +63,8 @@ String _get_expected_build_config() {
String _get_mono_user_dir() {
#ifdef TOOLS_ENABLED
- if (EditorSettings::get_singleton()) {
- return EditorSettings::get_singleton()->get_data_dir().plus_file("mono");
+ if (EditorPaths::get_singleton()) {
+ return EditorPaths::get_singleton()->get_data_dir().plus_file("mono");
} else {
String settings_path;