summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-05-28 13:54:57 +0200
committerGitHub <noreply@github.com>2020-05-28 13:54:57 +0200
commit1455776958ebe95f09411809a7c647f6c14b25d1 (patch)
tree8a81ff64a136373ad2f68ab80f3c1cbca02e94a0
parent6d63974af1292ac7209ae587d1559b4391fb5332 (diff)
parente48fb01d594d62ca1367122d9802177651522f44 (diff)
Merge pull request #39111 from nathanfranke/directory_remove_print
Remove "erasing" print from Directory.remove (Windows)
-rw-r--r--drivers/windows/dir_access_windows.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp
index d0f06ae4c4..2653ac1cdb 100644
--- a/drivers/windows/dir_access_windows.cpp
+++ b/drivers/windows/dir_access_windows.cpp
@@ -286,10 +286,6 @@ Error DirAccessWindows::remove(String p_path) {
p_path = fix_path(p_path);
- printf("erasing %s\n", p_path.utf8().get_data());
- //WIN32_FILE_ATTRIBUTE_DATA fileInfo;
- //DWORD fileAttr = GetFileAttributesExW(p_path.c_str(), GetFileExInfoStandard, &fileInfo);
-
DWORD fileAttr;
fileAttr = GetFileAttributesW(p_path.c_str());