mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
PPU Disasm: Fix non-link extended BCCTR forms
This commit is contained in:
parent
cb4192bce9
commit
74c05ec5ee
1 changed files with 1 additions and 1 deletions
|
@ -1151,7 +1151,7 @@ void PPUDisAsm::BCCTR(ppu_opcode_t op)
|
|||
}
|
||||
|
||||
std::string final = inst;
|
||||
final += lk ? "ctrl"sv : "clr"sv;
|
||||
final += lk ? "ctrl"sv : "ctr"sv;
|
||||
if (sign) final += sign;
|
||||
|
||||
DisAsm_CR_BRANCH(final, bi / 4, bh);
|
||||
|
|
Loading…
Add table
Reference in a new issue