mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Core: Change "unsigned result" to "u32 result" in rlwinmx for Jit64
This commit is contained in:
@ -1584,7 +1584,7 @@ void Jit64::rlwinmx(UGeckoInstruction inst)
|
|||||||
int s = inst.RS;
|
int s = inst.RS;
|
||||||
if (gpr.R(s).IsImm())
|
if (gpr.R(s).IsImm())
|
||||||
{
|
{
|
||||||
unsigned result = (int)gpr.R(s).offset;
|
u32 result = (int)gpr.R(s).offset;
|
||||||
if (inst.SH != 0)
|
if (inst.SH != 0)
|
||||||
result = _rotl(result, inst.SH);
|
result = _rotl(result, inst.SH);
|
||||||
result &= Helper_Mask(inst.MB, inst.ME);
|
result &= Helper_Mask(inst.MB, inst.ME);
|
||||||
|
Reference in New Issue
Block a user