mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-20 23:50:26 +01:00
PPU LLVM: Fixup MTFSF
This commit is contained in:
parent
e4d84e2c1c
commit
87d8bebd0d
|
|
@ -4653,7 +4653,7 @@ void PPUTranslator::MTFSF(ppu_opcode_t op)
|
|||
|
||||
for (u32 i = 16; i < 20; i++)
|
||||
{
|
||||
if (op.flm & (128 >> (i / 4)) != 0)
|
||||
if ((op.flm & (128 >> (i / 4))) != 0)
|
||||
{
|
||||
SetFPSCRBit(i, Trunc(m_ir->CreateLShr(value, i ^ 31), GetType<bool>()), false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue