[Project64] Move check for GetRoundingModel() to base

This commit is contained in:
zilmar 2016-11-14 18:15:24 +11:00
parent c122485e53
commit 658b9db8aa
2 changed files with 1 additions and 2 deletions

View File

@ -43,6 +43,7 @@ bool CRegBase::operator==(const CRegBase& right) const
}
if (m_CycleCount != right.m_CycleCount) { return false; }
if (m_Fpu_Used != right.m_Fpu_Used) { return false; }
if (GetRoundingModel() != right.GetRoundingModel()) { return false; }
return true;
}

View File

@ -105,8 +105,6 @@ bool CX86RegInfo::operator==(const CX86RegInfo& right) const
if (m_x86fpu_State[count] != right.m_x86fpu_State[count]) { return false; }
if (m_x86fpu_RoundingModel[count] != right.m_x86fpu_RoundingModel[count]) { return false; }
}
if (m_Fpu_Used != right.m_Fpu_Used) { return false; }
if (GetRoundingModel() != right.GetRoundingModel()) { return false; }
return true;
}