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:
Ryan Houdek 2013-09-24 01:40:19 +00:00
parent aa41978834
commit 41ab4a2275

View file

@ -49,11 +49,8 @@ void Jit64::lfs(UGeckoInstruction inst)
return;
}
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);
#endif
MEMCHECK_START