mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-24 11:43:05 +01:00
Fix typo in SUBFZE for the PPUInterpreter.
This commit is contained in:
parent
8798b05e1f
commit
f019bd995a
@ -2738,7 +2738,7 @@ private:
|
|||||||
{
|
{
|
||||||
const u64 RA = CPU.GPR[ra];
|
const u64 RA = CPU.GPR[ra];
|
||||||
CPU.GPR[rd] = ~RA + CPU.XER.CA;
|
CPU.GPR[rd] = ~RA + CPU.XER.CA;
|
||||||
CPU.XER.CA = (~RA + CPU.XER.CA > ~0x0) | ((RA == 0) & CPU.XER.CA);
|
CPU.XER.CA = ((RA == 0) & CPU.XER.CA);
|
||||||
if (oe) ConLog.Warning("subfzeo");
|
if (oe) ConLog.Warning("subfzeo");
|
||||||
if (rc) CPU.UpdateCR0<s64>(CPU.GPR[rd]);
|
if (rc) CPU.UpdateCR0<s64>(CPU.GPR[rd]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user