mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Minor diagnostic added
This commit is contained in:
parent
066e3006bf
commit
c20756136a
2 changed files with 14 additions and 4 deletions
|
@ -254,6 +254,7 @@ error_code sys_fs_opendir(vm::cptr<char> path, vm::ptr<u32> fd)
|
|||
}
|
||||
|
||||
*fd = _dir->id;
|
||||
sys_fs.notice("sys_fs_opendir(%s) -> lv2_fs_id %d", path, _dir->id);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
@ -288,7 +289,7 @@ error_code sys_fs_readdir(u32 fd, vm::ptr<CellFsDirent> dir, vm::ptr<u64> nread)
|
|||
|
||||
error_code sys_fs_closedir(u32 fd)
|
||||
{
|
||||
sys_fs.trace("sys_fs_closedir(fd=%d)", fd);
|
||||
sys_fs.warning("sys_fs_closedir(fd=%d)", fd);
|
||||
|
||||
const auto directory = idm::get<lv2_dir>(fd);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue