Fix issue with SPECIAL_DADDU

This commit is contained in:
LegendOfDragoon 2016-01-18 12:22:58 -08:00
parent fdebac0068
commit 53baf6d792
1 changed files with 1 additions and 1 deletions

View File

@ -4876,7 +4876,7 @@ void CRecompilerOps::SPECIAL_DADDU()
if (IsConst(source2))
{
AddConstToX86Reg(GetMipsRegMapLo(m_Opcode.rd), GetMipsRegLo(source2));
AddConstToX86Reg(GetMipsRegMapHi(m_Opcode.rd), GetMipsRegHi(source2));
AdcConstToX86Reg(GetMipsRegMapHi(m_Opcode.rd), GetMipsRegHi(source2));
}
else if (IsMapped(source2))
{