Recompiler: ignore 0x0407000D as an opcode in analysis

This commit is contained in:
zilmar 2013-04-11 11:16:27 +10:00
parent a7e723e642
commit 7055c1bad9
1 changed files with 5 additions and 0 deletions

View File

@ -483,6 +483,11 @@ bool CCodeBlock::AnalyzeInstruction ( DWORD PC, DWORD & TargetPC, DWORD & Contin
IncludeDelaySlot = true;
break;
default:
if (Command.Hex == 0x0407000D)
{
EndBlock = true;
break;
}
g_Notify->BreakPoint(__FILE__,__LINE__);
return false;
}