diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-26 10:28:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 10:28:25 +0200 |
commit | ba2cffc57568ce07c1fd8dcc34814fe791e1bee2 (patch) | |
tree | 635a4306732ef2d5cf4bdba68c35c0de2076c6da /platform/windows/export | |
parent | 1d9e1ac1437c935512489e353295287e18918ea4 (diff) | |
parent | 8b5c744f9528b09b8d16faf95be85f96f142a1ad (diff) |
Merge pull request #63096 from aaronfranke/exp-template-names
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 { |