diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index 9ca4dee930..dc43cbe5a9 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -1584,7 +1584,7 @@ void Jit64::rlwinmx(UGeckoInstruction inst) int s = inst.RS; if (gpr.R(s).IsImm()) { - unsigned result = (int)gpr.R(s).offset; + u32 result = (int)gpr.R(s).offset; if (inst.SH != 0) result = _rotl(result, inst.SH); result &= Helper_Mask(inst.MB, inst.ME);