mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-30 12:32:43 +00:00
Fix FMA copypasta (#8060)
This commit is contained in:
parent
5960de2e20
commit
5101bc189e
@ -4279,7 +4279,7 @@ void PPUTranslator::FMADD(ppu_opcode_t op)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result = m_ir->CreateFSub(m_ir->CreateFMul(a, c), b);
|
result = m_ir->CreateFAdd(m_ir->CreateFMul(a, c), b);
|
||||||
}
|
}
|
||||||
|
|
||||||
SetFpr(op.frd, result);
|
SetFpr(op.frd, result);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user