mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12: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
|
else
|
||||||
{
|
{
|
||||||
u_var_7 = (u_var_7 ^ 10) - 1 >> 0x1f;
|
u_var_7 = ((u_var_7 ^ 10) - 1) >> 0x1f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue