summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-29 12:25:49 +0200
committerGitHub <noreply@github.com>2022-07-29 12:25:49 +0200
commit3f2be350d6daa70f61ab1a50842f48a1d4654c7b (patch)
treed96689bd6ffb79224effcc7f2ff8c3ab725a8c8a /editor
parenta230e367af698f12e19c6da1352e69780f41232f (diff)
parentaf054f10034fdc8639357d3ad0b9f68e49e12f59 (diff)
Merge pull request #63614 from akien-mga/export-pc-template-path
Export: Fix template path for PC (Windows, Linux)
Diffstat (limited to 'editor')
-rw-r--r--editor/export/editor_export_platform_pc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export/editor_export_platform_pc.cpp b/editor/export/editor_export_platform_pc.cpp
index b60fba13ed..9d3146d9e8 100644
--- a/editor/export/editor_export_platform_pc.cpp
+++ b/editor/export/editor_export_platform_pc.cpp
@@ -139,7 +139,7 @@ Error EditorExportPlatformPC::prepare_template(const Ref<EditorExportPreset> &p_
template_path = template_path.strip_edges();
if (template_path.is_empty()) {
- template_path = find_export_template(get_template_file_name(p_debug ? "debug" : "release", p_preset->get("binary_format/64_bits") ? "64" : "32"));
+ template_path = find_export_template(get_template_file_name(p_debug ? "debug" : "release", p_preset->get("binary_format/64_bits") ? "x86_64" : "x86_32"));
}
if (!template_path.is_empty() && !FileAccess::exists(template_path)) {