summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJuan Linietsky <juan@godotengine.org>2019-03-02 11:58:42 -0300
committerJuan Linietsky <juan@godotengine.org>2019-03-02 11:58:42 -0300
commit6dc2669361f8d84bfb5674b4f410240b72916fdd (patch)
treee76e57fa65ed0904c51dc09f331a1083d8507a5f /drivers
parent90038a4eef6964b4993aa9b70418930f9ea232e4 (diff)
Remove some windows prints
Diffstat (limited to 'drivers')
-rw-r--r--drivers/windows/dir_access_windows.cpp4
1 files 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<DirAccessWindows *>(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];