summaryrefslogtreecommitdiff
path: root/modules/mono/editor
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-07-28 19:36:26 -0500
committerAaron Franke <arnfranke@yahoo.com>2022-07-29 11:07:30 -0500
commitac870ab1c8a41f8867b76ca66c364d284fea5488 (patch)
tree5b1cd6ad8443d69e9cd82824c906f7f1bf22dcd4 /modules/mono/editor
parent5352cf8e2fafb0c974e3ba68ff8e3c2ce80d449e (diff)
Move editor paths into the EditorPaths class
Diffstat (limited to 'modules/mono/editor')
-rw-r--r--modules/mono/editor/editor_internal_calls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/editor_internal_calls.cpp b/modules/mono/editor/editor_internal_calls.cpp
index 5e4fe90553..8b1b44852f 100644
--- a/modules/mono/editor/editor_internal_calls.cpp
+++ b/modules/mono/editor/editor_internal_calls.cpp
@@ -189,7 +189,7 @@ MonoString *godot_icall_Internal_UpdateApiAssembliesFromPrebuilt(MonoString *p_c
}
MonoString *godot_icall_Internal_FullExportTemplatesDir() {
- String full_templates_dir = EditorSettings::get_singleton()->get_export_templates_dir().plus_file(VERSION_FULL_CONFIG);
+ String full_templates_dir = EditorPaths::get_singleton()->get_export_templates_dir().plus_file(VERSION_FULL_CONFIG);
return GDMonoMarshal::mono_string_from_godot(full_templates_dir);
}