mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Fix order of operations warning
This commit is contained in:
parent
c8b8cafeec
commit
f0b1c8302a
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ error_code cellRtcParseRfc3339(vm::ptr<CellRtcTick> pUtc, vm::cptr<char> pszDate
|
|||
}
|
||||
else
|
||||
{
|
||||
u_var_7 = (u_var_7 ^ 10) - 1 >> 0x1f;
|
||||
u_var_7 = ((u_var_7 ^ 10) - 1) >> 0x1f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue