From af054f10034fdc8639357d3ad0b9f68e49e12f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 29 Jul 2022 11:02:52 +0200 Subject: [PATCH] Export: Fix template path for PC (Windows, Linux) Regression after #63096. --- editor/export/editor_export_platform_pc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/export/editor_export_platform_pc.cpp b/editor/export/editor_export_platform_pc.cpp index b60fba13ed7..9d3146d9e89 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 &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)) {