sys_fs: fix CELL_EIO condition in cellFsReadWithOffset
This commit is contained in:
@@ -1130,13 +1130,13 @@ error_code sys_fs_fcntl(ppu_thread& ppu, u32 fd, u32 op, vm::ptr<void> _arg, u32
|
|||||||
|
|
||||||
std::lock_guard lock(file->mp->mutex);
|
std::lock_guard lock(file->mp->mutex);
|
||||||
|
|
||||||
if (op == 0x8000000b && file->lock)
|
|
||||||
{
|
|
||||||
if (file->lock == 2)
|
if (file->lock == 2)
|
||||||
{
|
{
|
||||||
return CELL_EIO;
|
return CELL_EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (op == 0x8000000b && file->lock)
|
||||||
|
{
|
||||||
return CELL_EBUSY;
|
return CELL_EBUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user