mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue