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 /platform/windows/export | |
parent | fe929d4787b2b11390891fb03da1dda78b18eb65 (diff) |
Update export template names for Windows, Mac, and Linux
Diffstat (limited to 'platform/windows/export')
-rw-r--r-- | platform/windows/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/export/export_plugin.cpp b/platform/windows/export/export_plugin.cpp index 16c67345e0..45bfc761fe 100644 --- a/platform/windows/export/export_plugin.cpp +++ b/platform/windows/export/export_plugin.cpp @@ -104,7 +104,7 @@ Error EditorExportPlatformWindows::export_project(const Ref<EditorExportPreset> } String EditorExportPlatformWindows::get_template_file_name(const String &p_target, const String &p_arch) const { - return "windows_" + p_arch + "_" + p_target + ".exe"; + return "windows_" + p_target + "_" + p_arch + ".exe"; } List<String> EditorExportPlatformWindows::get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const { |