From aa4197883410e06dd020248a763cc06e731a0cbc Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Tue, 24 Sep 2013 01:34:08 +0000 Subject: [PATCH] Enable fastmem for the lfs instruction for unix and OSX as well. --- Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp index 7083d24276..4e5e885ea4 100644 --- a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp +++ b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp @@ -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);