mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Savestates: Log file descriptor information
This commit is contained in:
parent
1fd5fb2f7e
commit
3a9928de65
1 changed files with 5 additions and 1 deletions
|
@ -288,11 +288,15 @@ lv2_file::lv2_file(utils::serial& ar)
|
|||
|
||||
if (!file)
|
||||
{
|
||||
sys_fs.error("Failed to load %s for savestates", name.data());
|
||||
sys_fs.error("Failed to load \'%s\' file for savestates (res=%s, vpath=\'%s\', real-path=\'%s\', type=%s, flags=0x%x)", name.data(), res.error, retrieve_real, real_path, type, flags);
|
||||
ar.pos += sizeof(u64);
|
||||
ensure(!!g_cfg.savestate.state_inspection_mode);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
sys_fs.success("Loaded file descriptor \'%s\' file for savestates (vpath=\'%s\', type=%s, flags=0x%x, id=%d)", name.data(), retrieve_real, type, flags, idm::last_id());
|
||||
}
|
||||
|
||||
file.seek(ar);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue