Răsfoiți Sursa

Export: Fix template path for PC (Windows, Linux)

Regression after #63096.
Rémi Verschelde 3 ani în urmă
părinte
comite
af054f1003
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      editor/export/editor_export_platform_pc.cpp

+ 1 - 1
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();
 	template_path = template_path.strip_edges();
 
 
 	if (template_path.is_empty()) {
 	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)) {
 	if (!template_path.is_empty() && !FileAccess::exists(template_path)) {