mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
JIT: fix incredibly silly mistake in fmul rounding patch
This commit is contained in:
parent
9ff7125786
commit
f04e362721
1 changed files with 2 additions and 1 deletions
|
@ -130,7 +130,8 @@ 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));
|
||||||
Force25BitPrecision(XMM0, XMM1);
|
if (single_precision)
|
||||||
|
Force25BitPrecision(XMM0, XMM1);
|
||||||
switch (inst.SUBOP5)
|
switch (inst.SUBOP5)
|
||||||
{
|
{
|
||||||
case 28: //msub
|
case 28: //msub
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue