Fixed issue #12019, which prevented the creation of new folders on Windows platform
This commit is contained in:
parent
79e247d74e
commit
93ef512422
1 changed files with 1 additions and 1 deletions
|
@ -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("/", "\\");
|
||||
|
||||
|
|
Loading…
Reference in a new issue