From 17aecea5e4cf2ce26c3b634309cf8c3380565fe8 Mon Sep 17 00:00:00 2001 From: Nekokabu Date: Mon, 11 Jul 2016 21:48:58 +0900 Subject: [PATCH] Update x86RecompilerOps.cpp UnknownOpcode are comment out --- .../N64System/Recompiler/x86/x86RecompilerOps.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp b/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp index 08fc40f7d..59a41403f 100644 --- a/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp +++ b/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp @@ -7721,13 +7721,16 @@ void CX86RecompilerOps::COP0_MT() AndConstToVariable(0xFFFFCFF, &_CP0[m_Opcode.rd], CRegName::Cop0[m_Opcode.rd]); if (IsConst(m_Opcode.rt)) { - if ((GetMipsRegLo(m_Opcode.rt) & 0x300) != 0 && bHaveDebugger()){ g_Notify->DisplayError("Set IP0 or IP1"); } + if ((GetMipsRegLo(m_Opcode.rt) & 0x300) != 0 && bHaveDebugger()) + { + g_Notify->DisplayError("Set IP0 or IP1"); + } } - else if (bHaveDebugger()) + /*else if (bHaveDebugger()) { UnknownOpcode(); return; - } + }*/ m_RegWorkingSet.BeforeCallDirect(); #ifdef _MSC_VER MoveConstToX86reg((uint32_t)g_Reg, x86_ECX);