mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
PPU Analyzer: Another fixup
This commit is contained in:
parent
6b05fcf704
commit
d399bd5b6a
1 changed files with 1 additions and 1 deletions
|
@ -1888,7 +1888,7 @@ bool ppu_module::analyse(u32 lib_toc, u32 entry, const u32 sec_end, const std::b
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (u32 target0 = (test_op.aa ? 0 : target) + (type0 == ppu_itype::B ? +test_op.bt24 : +test_op.bt14);
|
else if (u32 target0 = (test_op.aa ? 0 : target) + (type0 == ppu_itype::B ? +test_op.bt24 : +test_op.bt14);
|
||||||
(type0 == ppu_itype::B || type0 == ppu_itype::BC) && target0 < segs[0].addr || target0 >= segs[0].addr + segs[0].size)
|
(type0 == ppu_itype::B || type0 == ppu_itype::BC) && (target0 < segs[0].addr || target0 >= segs[0].addr + segs[0].size))
|
||||||
{
|
{
|
||||||
// Sanity check
|
// Sanity check
|
||||||
is_good = false;
|
is_good = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue