JitArm64_Paired: Fix ps_msub when d == b

This commit is contained in:
MerryMage 2020-07-01 20:11:15 +01:00
parent 2147707641
commit a10447eae2
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ void JitArm64::ps_maddXX(UGeckoInstruction inst)
{
// d = -(-a * c + b)
// rounding is incorrect if the rounding mode is +/- infinity
m_float_emit.FMLS(size, VD, VB, VC);
m_float_emit.FMLS(size, VD, VA, VC);
m_float_emit.FNEG(size, VD, VD);
}
else if (d != a && d != c)