Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enable fastmem for the lfs instruction for unix and OSX as well.
  • Loading branch information
Sonicadvance1 committed Sep 24, 2013
1 parent 3fe8134 commit aa41978
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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);
Expand Down

0 comments on commit aa41978

Please sign in to comment.