mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
proper error code when file not found . This should fix issue #1923 at least bomberman works
This commit is contained in:
parent
13493ec051
commit
9eba0ac58c
1 changed files with 5 additions and 0 deletions
|
@ -572,6 +572,11 @@ static NEVER_INLINE s32 savedata_op(ppu_thread& ppu, u32 operation, u32 version,
|
|||
case CELL_SAVEDATA_FILEOP_READ:
|
||||
{
|
||||
fs::file file(dir_path + file_path, fs::read);
|
||||
if (!file)
|
||||
{
|
||||
cellSaveData.error("savedata file not found");
|
||||
return CELL_SAVEDATA_ERROR_FAILURE;
|
||||
}
|
||||
file.seek(fileSet->fileOffset);
|
||||
fileGet->excSize = static_cast<u32>(file.read(fileSet->fileBuf.get_ptr(), std::min<u32>(fileSet->fileSize, fileSet->fileBufSize)));
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue