Fix make_dir for long paths on Windows
This commit is contained in:
parent
d8be671313
commit
e048d1e0a2
|
@ -195,7 +195,7 @@ Error DirAccessWindows::make_dir(String p_dir) {
|
||||||
p_dir=get_current_dir().plus_file(p_dir);
|
p_dir=get_current_dir().plus_file(p_dir);
|
||||||
else
|
else
|
||||||
p_dir=fix_path(p_dir);
|
p_dir=fix_path(p_dir);
|
||||||
//p_dir.replace("/","\\");
|
p_dir = p_dir.replace("/","\\");
|
||||||
|
|
||||||
bool success;
|
bool success;
|
||||||
int err;
|
int err;
|
||||||
|
|
Loading…
Reference in New Issue