From 6dc2669361f8d84bfb5674b4f410240b72916fdd Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sat, 2 Mar 2019 11:58:42 -0300 Subject: Remove some windows prints --- drivers/windows/dir_access_windows.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp index 499bb4f34b..c5f078ccfb 100644 --- a/drivers/windows/dir_access_windows.cpp +++ b/drivers/windows/dir_access_windows.cpp @@ -348,11 +348,11 @@ size_t DirAccessWindows::get_space_left() { String DirAccessWindows::get_filesystem_type() const { String path = fix_path(const_cast(this)->get_current_dir()); - print_line("fixed path: " + path); + int unit_end = path.find(":"); ERR_FAIL_COND_V(unit_end == -1, String()); String unit = path.substr(0, unit_end + 1) + "\\"; - print_line("unit: " + unit); + WCHAR szVolumeName[100]; WCHAR szFileSystemName[10]; -- cgit v1.2.3