mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-22 03:40:30 +00:00
Fix typo in sys_fs_mkdir
create_path is a less resticted version of create_dir, it doesnt check for EEXIST for one.
This commit is contained in:
parent
37b6afaf2c
commit
57b7892de6
@ -744,7 +744,7 @@ error_code sys_fs_mkdir(vm::cptr<char> path, s32 mode)
|
||||
return {CELL_ENOTMOUNTED, path};
|
||||
}
|
||||
|
||||
if (!fs::create_path(local_path))
|
||||
if (!fs::create_dir(local_path))
|
||||
{
|
||||
switch (auto error = fs::g_tls_error)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user