From 46bfe664aa8b2cf45f021f1eb94cbf96f5bdc4b4 Mon Sep 17 00:00:00 2001 From: zilmar Date: Sat, 29 Sep 2012 19:46:13 +1000 Subject: [PATCH] fix issue with SDL and SDR using recompiler m_opcode --- Source/Project64/N64 System/Mips/Memory Virtual Mem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Project64/N64 System/Mips/Memory Virtual Mem.cpp b/Source/Project64/N64 System/Mips/Memory Virtual Mem.cpp index 20197024f..b2b752649 100644 --- a/Source/Project64/N64 System/Mips/Memory Virtual Mem.cpp +++ b/Source/Project64/N64 System/Mips/Memory Virtual Mem.cpp @@ -3710,7 +3710,7 @@ void CMipsMemoryVM::Compile_SDC1 (void) } void CMipsMemoryVM::Compile_SDL (void) { - OPCODE & Opcode = R4300iOp::m_Opcode; + OPCODE & Opcode = CRecompilerOps::m_Opcode; CPU_Message(" %X %s",m_CompilePC,R4300iOpcodeName(Opcode.Hex,m_CompilePC)); if (Opcode.base != 0) { UnMap_GPR(Opcode.base,TRUE); } @@ -3722,7 +3722,7 @@ void CMipsMemoryVM::Compile_SDL (void) { } void CMipsMemoryVM::Compile_SDR (void) { - OPCODE & Opcode = R4300iOp::m_Opcode; + OPCODE & Opcode = CRecompilerOps::m_Opcode; CPU_Message(" %X %s",m_CompilePC,R4300iOpcodeName(Opcode.Hex,m_CompilePC)); if (Opcode.base != 0) { UnMap_GPR(Opcode.base,TRUE); }