diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-07 17:12:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-07 17:12:01 +0200 |
commit | 3c42d5789f9ce485a17220371ae472f85d915249 (patch) | |
tree | 8af950ccd01ea14ed50183b32c2ecf5cc514ed44 /platform/uwp/export/export.cpp | |
parent | 2cb6b2ac6fd898b741d6e229264b568f3e99392e (diff) | |
parent | f043eabdd84a509abf5266bb444d19af3e26b7c6 (diff) |
Merge pull request #38308 from bruvzg/sad_security_circus
Adds PCK encryption support (using script encryption key for export).
Diffstat (limited to 'platform/uwp/export/export.cpp')
-rw-r--r-- | platform/uwp/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index ede0d7c76b..5679ec3eac 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -961,7 +961,7 @@ class EditorExportPlatformUWP : public EditorExportPlatform { return true; } - static Error save_appx_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total) { + static Error save_appx_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total, const Vector<String> &p_enc_in_filters, const Vector<String> &p_enc_ex_filters, const Vector<uint8_t> &p_key) { AppxPackager *packager = (AppxPackager *)p_userdata; String dst_path = p_path.replace_first("res://", "game/"); |