mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Enable fastmem for the lfs instruction for unix and OSX as well.
This commit is contained in:
@ -49,7 +49,7 @@ void Jit64::lfs(UGeckoInstruction inst)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
s32 offset = (s32)(s16)inst.SIMM_16;
|
s32 offset = (s32)(s16)inst.SIMM_16;
|
||||||
#if defined(_WIN32) && defined(_M_X64)
|
#if defined(_M_X64)
|
||||||
UnsafeLoadToEAX(gpr.R(a), 32, offset, false);
|
UnsafeLoadToEAX(gpr.R(a), 32, offset, false);
|
||||||
#else
|
#else
|
||||||
SafeLoadToEAX(gpr.R(a), 32, offset, false);
|
SafeLoadToEAX(gpr.R(a), 32, offset, false);
|
||||||
|
Reference in New Issue
Block a user