From 8d60103da21bb3727e63e6631088940afa103e6b Mon Sep 17 00:00:00 2001 From: zilmar Date: Tue, 6 Dec 2016 06:33:55 +1100 Subject: [PATCH] [Android] Fix bug in CArmRecompilerOps::SPECIAL_SLT --- .../N64System/Recompiler/Arm/ArmRecompilerOps.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Project64-core/N64System/Recompiler/Arm/ArmRecompilerOps.cpp b/Source/Project64-core/N64System/Recompiler/Arm/ArmRecompilerOps.cpp index b32ec69e4..b80e4ee4f 100644 --- a/Source/Project64-core/N64System/Recompiler/Arm/ArmRecompilerOps.cpp +++ b/Source/Project64-core/N64System/Recompiler/Arm/ArmRecompilerOps.cpp @@ -3542,8 +3542,8 @@ void CArmRecompilerOps::SPECIAL_SLT() } else if (IsMapped(m_Opcode.rt) && IsMapped(m_Opcode.rs)) { - ProtectGPR(GetMipsRegMapLo(m_Opcode.rs)); - ProtectGPR(GetMipsRegMapLo(m_Opcode.rt)); + ProtectGPR(m_Opcode.rs); + ProtectGPR(m_Opcode.rt); if (useRdReg) { Map_GPR_32bit(m_Opcode.rd, false, -1);