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
This commit is contained in:
parent
6a2bacac8c
commit
2899ebc84c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue