diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-03-10 09:48:25 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-03-16 11:16:19 +0200 |
commit | 98d0af7d5cd5fdba468ab88535a0152022467e85 (patch) | |
tree | f59fe259ef821b9445a95add1e83774afa6719b1 /platform/javascript/export/export_plugin.cpp | |
parent | cfd21adf64087c750dde89191bcfcf4d166adc85 (diff) |
Implement GDExtension export plugin.
Diffstat (limited to 'platform/javascript/export/export_plugin.cpp')
-rw-r--r-- | platform/javascript/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/export/export_plugin.cpp b/platform/javascript/export/export_plugin.cpp index e7855acf60..4448acccc2 100644 --- a/platform/javascript/export/export_plugin.cpp +++ b/platform/javascript/export/export_plugin.cpp @@ -440,7 +440,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese // Export pck and shared objects Vector<SharedObject> shared_objects; String pck_path = base_path + ".pck"; - Error error = save_pack(p_preset, pck_path, &shared_objects); + Error error = save_pack(p_preset, p_debug, pck_path, &shared_objects); if (error != OK) { EditorNode::get_singleton()->show_warning(TTR("Could not write file:") + "\n" + pck_path); return error; |