Fixup for Emu.Pause()

Remove some reduntant calls.
Don't pause on unknown sys_fs_fcntl operation.
This commit is contained in:
Nekotekina 2020-03-08 22:00:05 +03:00
parent 6268a2d384
commit 9dca2887d8
5 changed files with 1 additions and 7 deletions

View file

@ -1537,7 +1537,7 @@ error_code sys_fs_fcntl(ppu_thread& ppu, u32 fd, u32 op, vm::ptr<void> _arg, u32
}
}
sys_fs.fatal("sys_fs_fcntl(): Unknown operation 0x%08x (fd=%d, arg=*0x%x, size=0x%x)", op, fd, _arg, _size);
sys_fs.error("sys_fs_fcntl(): Unknown operation 0x%08x (fd=%d, arg=*0x%x, size=0x%x)", op, fd, _arg, _size);
return CELL_OK;
}