From 82d60ee48ddd2375bd0d9594877345c8a27fb39e Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Fri, 23 May 2014 09:19:18 -0700 Subject: [PATCH] Do not set the CA bit in ADD(). Thanks Ashe`. --- rpcs3/Emu/Cell/PPUInterpreter.h | 1 - 1 file changed, 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUInterpreter.h b/rpcs3/Emu/Cell/PPUInterpreter.h index 544b8b5303..0f38781fa2 100644 --- a/rpcs3/Emu/Cell/PPUInterpreter.h +++ b/rpcs3/Emu/Cell/PPUInterpreter.h @@ -2820,7 +2820,6 @@ private: const u64 RA = CPU.GPR[ra]; const u64 RB = CPU.GPR[rb]; CPU.GPR[rd] = RA + RB; - CPU.XER.CA = CPU.IsCarry(RA, RB); if(oe) UNK("addo"); if(rc) CPU.UpdateCR0(CPU.GPR[rd]); }