mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
C-style cast cleanup V
This commit is contained in:
parent
46ca39ec4d
commit
185c067d5b
44 changed files with 439 additions and 435 deletions
|
@ -574,7 +574,7 @@ error_code cellPadSetActDirect(u32 port_no, vm::ptr<CellPadActParam> param)
|
|||
return CELL_PAD_ERROR_INVALID_PARAMETER;
|
||||
|
||||
// Note: signed check unlike the usual unsigned check
|
||||
if ((s32)g_ps3_process_info.sdk_ver > 0x1FFFFF)
|
||||
if (static_cast<s32>(g_ps3_process_info.sdk_ver) > 0x1FFFFF)
|
||||
{
|
||||
// make sure reserved bits are 0
|
||||
for (int i = 0; i < 6; i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue