From 7055c1bad931c7e27691ecb248d634110e86658b Mon Sep 17 00:00:00 2001 From: zilmar Date: Thu, 11 Apr 2013 11:16:27 +1000 Subject: [PATCH] Recompiler: ignore 0x0407000D as an opcode in analysis --- Source/Project64/N64 System/Recompiler/Code Block.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Project64/N64 System/Recompiler/Code Block.cpp b/Source/Project64/N64 System/Recompiler/Code Block.cpp index 5e239f6e6..e694d2e6d 100644 --- a/Source/Project64/N64 System/Recompiler/Code Block.cpp +++ b/Source/Project64/N64 System/Recompiler/Code Block.cpp @@ -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; }