mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-15 22:21:25 +00:00
Avoid shifting by greater/equal than max bits values in ppu_rotate_mask
This commit is contained in:
parent
a36f0497ce
commit
c65bb0d267
@ -64,7 +64,7 @@ union ppu_opcode_t
|
||||
|
||||
inline u64 ppu_rotate_mask(u32 mb, u32 me)
|
||||
{
|
||||
return utils::ror64(~0ull << (63 ^ (me - mb)), mb);
|
||||
return utils::ror64(~0ull << (~(me - mb) & 63), mb);
|
||||
}
|
||||
|
||||
inline u32 ppu_decode(u32 inst)
|
||||
|
Loading…
x
Reference in New Issue
Block a user