diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-11-19 10:41:20 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-11-19 10:41:20 -0300 |
commit | d3eb9e8c54d4a93b2bed90a5988f9814377d409f (patch) | |
tree | a8586037e25eb481fb386745bbcd9a63ced46898 /platform/windows/export/export.cpp | |
parent | 36d620c633be55ac402892bce816d4a9b4d67bee (diff) | |
download | redot-engine-d3eb9e8c54d4a93b2bed90a5988f9814377d409f.tar.gz |
-remove Vector2.atan2() replaced by Vector2.angle(), fixes #2260
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; |