mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Replace verify() with ensure() with auto src location.
Expression ensure(x) returns x. Using comma operator removed.
This commit is contained in:
parent
38745e5782
commit
e055d16b2c
121 changed files with 693 additions and 690 deletions
|
|
@ -97,7 +97,7 @@ error_code sys_ss_access_control_engine(u64 pkg_id, u64 a2, u64 a3)
|
|||
return CELL_ESRCH;
|
||||
}
|
||||
|
||||
verify(HERE), a2 == static_cast<u64>(process_getpid());
|
||||
ensure(a2 == static_cast<u64>(process_getpid()));
|
||||
vm::write64(vm::cast(a3), authid);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue