mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
parent
58714d8c68
commit
d9c20c16de
1 changed files with 1 additions and 1 deletions
|
@ -4653,7 +4653,7 @@ void PPUTranslator::MTFSF(ppu_opcode_t op)
|
|||
|
||||
for (u32 i = 16; i < 20; i++)
|
||||
{
|
||||
if (i != 1 && i != 2 && (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…
Add table
Reference in a new issue