From 93ef5124226239d05894c6268a0714391cdb4b5a Mon Sep 17 00:00:00 2001 From: Falk Moser Date: Fri, 13 Oct 2017 00:34:05 +0200 Subject: [PATCH] Fixed issue #12019, which prevented the creation of new folders on Windows platform --- drivers/windows/dir_access_windows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp index 8d6e78dbee6..0bc4201ba38 100644 --- a/drivers/windows/dir_access_windows.cpp +++ b/drivers/windows/dir_access_windows.cpp @@ -164,7 +164,7 @@ Error DirAccessWindows::make_dir(String p_dir) { p_dir = fix_path(p_dir); if (p_dir.is_rel_path()) - p_dir = get_current_dir().plus_file(p_dir); + p_dir = current_dir.plus_file(p_dir); p_dir = p_dir.replace("/", "\\");