mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-16 16:21:03 +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
|
||||
{
|
||||
result = m_ir->CreateFSub(m_ir->CreateFMul(a, c), b);
|
||||
result = m_ir->CreateFAdd(m_ir->CreateFMul(a, c), b);
|
||||
}
|
||||
|
||||
SetFpr(op.frd, result);
|
||||
|
Loading…
Reference in New Issue
Block a user