mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
Fix FMA copypasta (#8060)
This commit is contained in:
parent
5960de2e20
commit
5101bc189e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue