Merge pull request #874 from FioraAeterna/fixidiocy

JIT: fix incredibly silly mistake in fmul rounding patch
This commit is contained in:
Lioncash 2014-08-25 13:22:33 -04:00
commit 44ee2f20b9
1 changed files with 2 additions and 1 deletions

View File

@ -130,6 +130,7 @@ void Jit64::fmaddXX(UGeckoInstruction inst)
fpr.Lock(a, b, c, d); fpr.Lock(a, b, c, d);
MOVSD(XMM0, fpr.R(c)); MOVSD(XMM0, fpr.R(c));
if (single_precision)
Force25BitPrecision(XMM0, XMM1); Force25BitPrecision(XMM0, XMM1);
switch (inst.SUBOP5) switch (inst.SUBOP5)
{ {