From 2899ebc84cf8aff2592178a7951fe0f663ef6e87 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Tue, 28 Oct 2008 22:32:06 +0000 Subject: [PATCH] Disable lfd in JIT for now - it appears to be the cause for the random glitches in THP videos and other weird stuff. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@995 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp index 342d2b4dab..4b0b8249ba 100644 --- a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp +++ b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp @@ -104,6 +104,8 @@ void lfs(UGeckoInstruction inst) void lfd(UGeckoInstruction inst) { + Default(inst); + return; #ifdef JIT_OFF_OPTIONS if(Core::g_CoreStartupParameter.bJITOff || Core::g_CoreStartupParameter.bJITLoadStoreOff) {Default(inst); return;} // turn off from debugger