mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-01 12:08:12 +00:00
PPU Analyzer: Fixup
This commit is contained in:
parent
99c2d37b8c
commit
1e1d6f6437
@ -1833,7 +1833,7 @@ bool ppu_module::analyse(u32 lib_toc, u32 entry, const u32 sec_end, const std::b
|
||||
|
||||
if (type == ppu_itype::B || type == ppu_itype::BC)
|
||||
{
|
||||
if (type == ppu_itype::BC && (op.bo & 0x14) == 0x14 && op.bo & 0xd)
|
||||
if (type == ppu_itype::BC && (op.bo & 0x14) == 0x14 && op.bo & 0xB)
|
||||
{
|
||||
// Invalid form
|
||||
is_good = false;
|
||||
|
@ -1342,7 +1342,7 @@ void PPUDisAsm::BC(ppu_opcode_t op)
|
||||
|
||||
if (!inst)
|
||||
{
|
||||
fmt::append(last_opcode, "bc 0x%x, 0x%x, 0x%x, %d, %d", bo, bi, bd, aa, lk);
|
||||
fmt::append(last_opcode, "%-*s 0x%x, 0x%x, 0x%x, %d, %d", PadOp(), "bc", bo, bi, bd, aa, lk);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user