Enable fastmem for the lfs instruction for unix and OSX as well.

This commit is contained in:
Ryan Houdek 2013-09-24 01:34:08 +00:00
parent 3fe8134f3b
commit aa41978834

View file

@ -49,7 +49,7 @@ void Jit64::lfs(UGeckoInstruction inst)
return;
}
s32 offset = (s32)(s16)inst.SIMM_16;
#if defined(_WIN32) && defined(_M_X64)
#if defined(_M_X64)
UnsafeLoadToEAX(gpr.R(a), 32, offset, false);
#else
SafeLoadToEAX(gpr.R(a), 32, offset, false);