diff options
| author | Juan Linietsky | 2015-08-06 02:37:40 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-08-06 02:37:40 -0300 |
| commit | 9d185ccc30ad5fe7eb716390ca2e7f5c06574ce0 (patch) | |
| tree | f497a42db3bc171e52cc60996ddb92f9d09a313b /platform/osx/export/export.cpp | |
| parent | 8280bb0de0737f9149face902db21192a0d98ca8 (diff) | |
| download | godot-9d185ccc30ad5fe7eb716390ca2e7f5c06574ce0.tar.gz godot-9d185ccc30ad5fe7eb716390ca2e7f5c06574ce0.tar.zst godot-9d185ccc30ad5fe7eb716390ca2e7f5c06574ce0.zip | |
Diffstat (limited to 'platform/osx/export/export.cpp')
| -rw-r--r-- | platform/osx/export/export.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/osx/export/export.cpp b/platform/osx/export/export.cpp index 885f234a0..823bc46d7 100644 --- a/platform/osx/export/export.cpp +++ b/platform/osx/export/export.cpp @@ -57,11 +57,11 @@ public: virtual int get_device_count() const { return 0; }; virtual String get_device_name(int p_device) const { return String(); } virtual String get_device_info(int p_device) const { return String(); } - virtual Error run(int p_device,bool p_dumb=false); + virtual Error run(int p_device,bool p_dumb=false,bool p_remote_debug=false); virtual bool requieres_password(bool p_debug) const { return false; } virtual String get_binary_extension() const { return "zip"; } - virtual Error export_project(const String& p_path,bool p_debug,bool p_dumb=false); + virtual Error export_project(const String& p_path,bool p_debug,bool p_dumb=false,bool p_remote_debug=false); virtual bool can_export(String *r_error=NULL) const; @@ -245,7 +245,7 @@ void EditorExportPlatformOSX::_fix_plist(Vector<uint8_t>& plist,const String& p_ } } -Error EditorExportPlatformOSX::export_project(const String& p_path, bool p_debug, bool p_dumb) { +Error EditorExportPlatformOSX::export_project(const String& p_path, bool p_debug, bool p_dumb, bool p_remote_debug) { String src_pkg; @@ -437,7 +437,7 @@ Error EditorExportPlatformOSX::export_project(const String& p_path, bool p_debug } -Error EditorExportPlatformOSX::run(int p_device, bool p_dumb) { +Error EditorExportPlatformOSX::run(int p_device, bool p_dumb, bool p_remote_debug) { return OK; } |
