diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2015-11-19 09:16:30 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2015-11-19 09:16:30 +0100 |
commit | da4f6181393eea5b951993eb174525180dd09447 (patch) | |
tree | 81fa7c0bd25bcfaf70f5111fc10dc6f574a40590 /platform/windows/export/export.cpp | |
parent | 36d620c633be55ac402892bce816d4a9b4d67bee (diff) | |
parent | 094c6c70d731a025f8e3549164811c917d9dc43f (diff) |
Merge pull request #2820 from masoudbh3/fix-windows-export
Fix Windows Export
Diffstat (limited to 'platform/windows/export/export.cpp')
-rw-r--r-- | platform/windows/export/export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/export/export.cpp b/platform/windows/export/export.cpp index d09152234a..29f21bf227 100644 --- a/platform/windows/export/export.cpp +++ b/platform/windows/export/export.cpp @@ -197,9 +197,9 @@ void EditorExportPlatformWindows::_get_property_list( List<PropertyInfo> *p_list } -Error EditorExportPlatformWindows::export_project(const String& p_path, bool p_debug, bool p_dumb,bool p_remote_debug) { +Error EditorExportPlatformWindows::export_project(const String& p_path, bool p_debug, int p_flags) { - Error err = EditorExportPlatformPC::export_project(p_path, p_debug, p_dumb, p_remote_debug); + Error err = EditorExportPlatformPC::export_project(p_path, p_debug, p_flags); if(err != OK) { return err; |