mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00: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:
parent
aa41978834
commit
41ab4a2275
1 changed files with 1 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue