mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Remove explicit_bool_t, ignore, multicast<>
Remove vm::ptr operator % This was a bad idea but explicit_bool_t was created almost for it Other removed types are unused and have little to no meaning
This commit is contained in:
parent
99ffc3fca9
commit
ee96807305
11 changed files with 22 additions and 91 deletions
|
@ -732,7 +732,7 @@ void ppu_module::analyse(u32 lib_toc, u32 entry)
|
|||
// Probe
|
||||
for (vm::cptr<u32> ptr = vm::cast(sec.addr); ptr < sec_end;)
|
||||
{
|
||||
if (ptr % 4 || ptr.addr() < sec.addr || ptr >= sec_end)
|
||||
if (!ptr.aligned() || ptr.addr() < sec.addr || ptr >= sec_end)
|
||||
{
|
||||
sec_end.set(0);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue