diff options
| author | Juan Linietsky | 2015-11-19 10:41:20 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-11-19 10:41:20 -0300 |
| commit | d3eb9e8c54d4a93b2bed90a5988f9814377d409f (patch) | |
| tree | a8586037e25eb481fb386745bbcd9a63ced46898 /platform | |
| parent | 36d620c633be55ac402892bce816d4a9b4d67bee (diff) | |
| download | godot-d3eb9e8c54d4a93b2bed90a5988f9814377d409f.tar.gz godot-d3eb9e8c54d4a93b2bed90a5988f9814377d409f.tar.zst godot-d3eb9e8c54d4a93b2bed90a5988f9814377d409f.zip | |
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/export/export.cpp | 4 | ||||
| -rw-r--r-- | platform/windows/export/export.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/platform/windows/export/export.cpp b/platform/windows/export/export.cpp index d09152234..29f21bf22 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; diff --git a/platform/windows/export/export.h b/platform/windows/export/export.h index 702acc04b..2424efc86 100644 --- a/platform/windows/export/export.h +++ b/platform/windows/export/export.h @@ -29,7 +29,7 @@ protected: void _get_property_list( List<PropertyInfo> *p_list) const; public: - Error export_project(const String& p_path, bool p_debug, bool p_dumb=false, bool p_remote_debug=false); + Error export_project(const String& p_path, bool p_debug,int p_flags=0); EditorExportPlatformWindows(); }; |
