From 6885d3253dc244aed7e71041e81d3cca94649b59 Mon Sep 17 00:00:00 2001 From: Eladash Date: Mon, 11 Oct 2021 19:28:13 +0300 Subject: [PATCH] PPU DisAsm: Fix CMPLI disassembly --- rpcs3/Emu/Cell/PPUDisAsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUDisAsm.cpp b/rpcs3/Emu/Cell/PPUDisAsm.cpp index 4b1104603fa4..f58d3928c555 100644 --- a/rpcs3/Emu/Cell/PPUDisAsm.cpp +++ b/rpcs3/Emu/Cell/PPUDisAsm.cpp @@ -1044,7 +1044,7 @@ void PPUDisAsm::SUBFIC(ppu_opcode_t op) void PPUDisAsm::CMPLI(ppu_opcode_t op) { - DisAsm_CR1_R1_IMM(op.l10 ? "cmpdi" : "cmpwi", op.crfd, op.ra, op.uimm16); + DisAsm_CR1_R1_IMM(op.l10 ? "cmpldi" : "cmplwi", op.crfd, op.ra, op.uimm16); } void PPUDisAsm::CMPI(ppu_opcode_t op)