diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-05 15:08:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 15:08:27 +0100 |
commit | 75c06289c40b90275c3d715708e1924d920a8112 (patch) | |
tree | b93a2b1dbcf1ef10a25a785fe3b4fc0b41aa0208 /platform/uwp/export/export_plugin.cpp | |
parent | 63d9308b4b27ff6d50e2f663ec72b35edefc2ff2 (diff) | |
parent | d2573c1636303f490df641f8a1cdaa3c46616054 (diff) |
Merge pull request #56517 from bruvzg/fix_export_utf8
Diffstat (limited to 'platform/uwp/export/export_plugin.cpp')
-rw-r--r-- | platform/uwp/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/export/export_plugin.cpp b/platform/uwp/export/export_plugin.cpp index f1f100bdd3..594495375a 100644 --- a/platform/uwp/export/export_plugin.cpp +++ b/platform/uwp/export/export_plugin.cpp @@ -325,7 +325,7 @@ Error EditorExportPlatformUWP::export_project(const Ref<EditorExportPreset> &p_p char fname[16834]; ret = unzGetCurrentFileInfo(pkg, &info, fname, 16834, nullptr, 0, nullptr, 0); - String path = fname; + String path = String::utf8(fname); if (path.ends_with("/")) { // Ignore directories |