mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Jit_Integer: Missed AndWithMask in rlwimix
This commit is contained in:
parent
e1024fc6ba
commit
946e1b9054
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue