-remove Vector2.atan2() replaced by Vector2.angle(), fixes #2260

This commit is contained in:
Juan Linietsky
2015-11-19 10:41:20 -03:00
parent 36d620c633
commit d3eb9e8c54
12 changed files with 16 additions and 16 deletions

View File

@ -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;