R5900: Fix disassembling of BC0 instructions

This commit is contained in:
Connor McLaughlin 2022-11-20 13:36:41 +10:00 committed by refractionpcsx2
parent 3d8fe01bc6
commit 599e291824
1 changed files with 1 additions and 1 deletions

View File

@ -634,7 +634,7 @@ namespace R5900
const OPCODE& Class_MMI3(u32 op) { return tbl_MMI3[(op >> 6) & 0x1F]; }
const OPCODE& Class_COP0(u32 op) { return tbl_COP0[(op >> 21) & 0x1F]; }
const OPCODE& Class_COP0_BC0(u32 op) { return tbl_COP0_BC0[(cpuRegs.code >> 16) & 0x03]; }
const OPCODE& Class_COP0_BC0(u32 op) { return tbl_COP0_BC0[(op >> 16) & 0x03]; }
const OPCODE& Class_COP0_C0(u32 op) { return tbl_COP0_C0[op & 0x3F]; }
const OPCODE& Class_COP1(u32 op) { return tbl_COP1[(op >> 21) & 0x1F]; }