summaryrefslogtreecommitdiffstats
path: root/editor/editor_export.cpp
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-07-16 20:21:45 -0500
committerAaron Franke <arnfranke@yahoo.com>2022-07-22 12:35:43 -0500
commitb00bb577e71c5822009853e42b5e697426ce0c2f (patch)
tree5a3703aa7a1d331188137ff8480b7f37b08c75c8 /editor/editor_export.cpp
parent79463aa5defb083569d193658a62755223f14dc4 (diff)
downloadredot-engine-b00bb577e71c5822009853e42b5e697426ce0c2f.tar.gz
Rename directory for export templates from templates to export_templates
Diffstat (limited to 'editor/editor_export.cpp')
-rw-r--r--editor/editor_export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index e32d4f7e9c..46907bdf8a 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -491,7 +491,7 @@ Ref<ImageTexture> EditorExportPlatform::get_option_icon(int p_index) const {
String EditorExportPlatform::find_export_template(String template_file_name, String *err) const {
String current_version = VERSION_FULL_CONFIG;
- String template_path = EditorSettings::get_singleton()->get_templates_dir().plus_file(current_version).plus_file(template_file_name);
+ String template_path = EditorSettings::get_singleton()->get_export_templates_dir().plus_file(current_version).plus_file(template_file_name);
if (FileAccess::exists(template_path)) {
return template_path;