Jit_Integer: Missed AndWithMask in rlwimix

This commit is contained in:
MerryMage 2020-12-26 23:33:33 +00:00
parent e1024fc6ba
commit 946e1b9054
1 changed files with 1 additions and 1 deletions

View File

@ -1683,7 +1683,7 @@ void Jit64::rlwimix(UGeckoInstruction inst)
else
{
RotateLeft(32, Ra, Rs, inst.SH);
AND(32, Ra, Imm32(mask));
AndWithMask(Ra, mask);
}
OR(32, Ra, Imm32(maskA));
}