mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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:
@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user