diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-07-29 11:02:52 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-07-29 11:03:18 +0200 |
commit | af054f10034fdc8639357d3ad0b9f68e49e12f59 (patch) | |
tree | f45ddbf68ee31363825d416765724d62cc7c7ec8 /editor/export | |
parent | 9869182e8a01f803208d319bce8087fd2ff035b4 (diff) |
Export: Fix template path for PC (Windows, Linux)
Regression after #63096.
Diffstat (limited to 'editor/export')
-rw-r--r-- | editor/export/editor_export_platform_pc.cpp | 2 |
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)) { |