Browse Source

Remove some windows prints

Juan Linietsky 6 years ago
parent
commit
6dc2669361
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/windows/dir_access_windows.cpp

+ 2 - 2
drivers/windows/dir_access_windows.cpp

@@ -348,11 +348,11 @@ size_t DirAccessWindows::get_space_left() {
 
 
 String DirAccessWindows::get_filesystem_type() const {
 String DirAccessWindows::get_filesystem_type() const {
 	String path = fix_path(const_cast<DirAccessWindows *>(this)->get_current_dir());
 	String path = fix_path(const_cast<DirAccessWindows *>(this)->get_current_dir());
-	print_line("fixed path: " + path);
+
 	int unit_end = path.find(":");
 	int unit_end = path.find(":");
 	ERR_FAIL_COND_V(unit_end == -1, String());
 	ERR_FAIL_COND_V(unit_end == -1, String());
 	String unit = path.substr(0, unit_end + 1) + "\\";
 	String unit = path.substr(0, unit_end + 1) + "\\";
-	print_line("unit: " + unit);
+
 
 
 	WCHAR szVolumeName[100];
 	WCHAR szVolumeName[100];
 	WCHAR szFileSystemName[10];
 	WCHAR szFileSystemName[10];