diff options
| author | Aaron Franke <arnfranke@yahoo.com> | 2022-07-16 21:44:36 -0500 |
|---|---|---|
| committer | Aaron Franke <arnfranke@yahoo.com> | 2022-07-22 18:40:59 -0500 |
| commit | 8b5c744f9528b09b8d16faf95be85f96f142a1ad (patch) | |
| tree | cd5166198591232597601b318ba831f6e9a18c81 /editor | |
| parent | fe929d4787b2b11390891fb03da1dda78b18eb65 (diff) | |
Update export template names for Windows, Mac, and Linux
Diffstat (limited to 'editor')
| -rw-r--r-- | editor/editor_export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index 46907bdf8a..b09339ce3a 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -1884,8 +1884,8 @@ bool EditorExportPlatformPC::can_export(const Ref<EditorExportPreset> &p_preset, // Look for export templates (first official, and if defined custom templates). bool use64 = p_preset->get("binary_format/64_bits"); - bool dvalid = exists_export_template(get_template_file_name("debug", use64 ? "64" : "32"), &err); - bool rvalid = exists_export_template(get_template_file_name("release", use64 ? "64" : "32"), &err); + bool dvalid = exists_export_template(get_template_file_name("debug", use64 ? "x86_64" : "x86_32"), &err); + bool rvalid = exists_export_template(get_template_file_name("release", use64 ? "x86_64" : "x86_32"), &err); if (p_preset->get("custom_template/debug") != "") { dvalid = FileAccess::exists(p_preset->get("custom_template/debug")); |