Browse Source

Merge pull request #2820 from masoudbh3/fix-windows-export

Fix Windows Export
Rémi Verschelde 9 years ago
parent
commit
da4f618139
2 changed files with 3 additions and 3 deletions
  1. 2 2
      platform/windows/export/export.cpp
  2. 1 1
      platform/windows/export/export.h

+ 2 - 2
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)
 	if(err != OK)
 	{
 	{
 		return err;
 		return err;

+ 1 - 1
platform/windows/export/export.h

@@ -29,7 +29,7 @@ protected:
 	void _get_property_list( List<PropertyInfo> *p_list) const;
 	void _get_property_list( List<PropertyInfo> *p_list) const;
 	
 	
 public:
 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();
 	EditorExportPlatformWindows();
 };
 };