Nevermind the previous commit, SafeLoadToEAX already calls in to UnsafeLoadToEAX if fastmem is enabled. This one just tidys up the code.
This commit is contained in:
parent
aa41978834
commit
41ab4a2275
|
@ -49,11 +49,8 @@ void Jit64::lfs(UGeckoInstruction inst)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
s32 offset = (s32)(s16)inst.SIMM_16;
|
s32 offset = (s32)(s16)inst.SIMM_16;
|
||||||
#if defined(_M_X64)
|
|
||||||
UnsafeLoadToEAX(gpr.R(a), 32, offset, false);
|
|
||||||
#else
|
|
||||||
SafeLoadToEAX(gpr.R(a), 32, offset, false);
|
SafeLoadToEAX(gpr.R(a), 32, offset, false);
|
||||||
#endif
|
|
||||||
|
|
||||||
MEMCHECK_START
|
MEMCHECK_START
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue