[Android] Fix bug in CArmRecompilerOps::SPECIAL_SLT

This commit is contained in:
zilmar 2016-12-06 06:33:55 +11:00
parent ac0c6ff948
commit 8d60103da2
1 changed files with 2 additions and 2 deletions

View File

@ -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);