diff --git a/rpcs3/Emu/Cell/lv2/sys_fs.cpp b/rpcs3/Emu/Cell/lv2/sys_fs.cpp index 6f9e97dfe6..a5358dc32a 100644 --- a/rpcs3/Emu/Cell/lv2/sys_fs.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_fs.cpp @@ -744,7 +744,7 @@ error_code sys_fs_mkdir(vm::cptr 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) {