summaryrefslogtreecommitdiffstats
path: root/platform/web/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-10 14:22:48 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-10 14:22:48 +0200
commit1f0f81049fc470fe10ddb64086c94b9c595ec81f (patch)
tree3c4cdccf082db25868aebb138a47933a34f37136 /platform/web/export/export_plugin.cpp
parent5d4507b9149fadb1f8fe708488f90dbd9b65aa43 (diff)
parenta057158d7569a157d9dc1f4f4539c14519bc0af0 (diff)
downloadredot-engine-1f0f81049fc470fe10ddb64086c94b9c595ec81f.tar.gz
Merge pull request #90476 from mihe/revert-pack-trimming
Revert pack trimming introduced by #82084
Diffstat (limited to 'platform/web/export/export_plugin.cpp')
-rw-r--r--platform/web/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/export/export_plugin.cpp b/platform/web/export/export_plugin.cpp
index ec7f599507..41c969b5f4 100644
--- a/platform/web/export/export_plugin.cpp
+++ b/platform/web/export/export_plugin.cpp
@@ -479,7 +479,7 @@ Error EditorExportPlatformWeb::export_project(const Ref<EditorExportPreset> &p_p
// Export pck and shared objects
Vector<SharedObject> shared_objects;
String pck_path = base_path + ".pck";
- Error error = save_pack(true, p_preset, p_debug, pck_path, &shared_objects);
+ Error error = save_pack(p_preset, p_debug, pck_path, &shared_objects);
if (error != OK) {
add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not write file: \"%s\"."), pck_path));
return error;