mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Replace rotate utils with std::rotl
More include cleanup.
This commit is contained in:
parent
f72af2973d
commit
4d8bfe328b
8 changed files with 49 additions and 179 deletions
|
|
@ -2413,7 +2413,7 @@ namespace rsx
|
|||
|
||||
for (u32 ea = address >> 20, end = ea + (size >> 20); ea < end; ea++)
|
||||
{
|
||||
const u32 io = utils::ror32(iomap_table.io[ea], 20);
|
||||
const u32 io = std::rotr<u32>(iomap_table.io[ea], 20);
|
||||
|
||||
if (io + 1)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue