[Project64] Move check for GetRoundingModel() to base
This commit is contained in:
parent
c122485e53
commit
658b9db8aa
|
@ -43,6 +43,7 @@ bool CRegBase::operator==(const CRegBase& right) const
|
||||||
}
|
}
|
||||||
if (m_CycleCount != right.m_CycleCount) { return false; }
|
if (m_CycleCount != right.m_CycleCount) { return false; }
|
||||||
if (m_Fpu_Used != right.m_Fpu_Used) { return false; }
|
if (m_Fpu_Used != right.m_Fpu_Used) { return false; }
|
||||||
|
if (GetRoundingModel() != right.GetRoundingModel()) { return false; }
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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_State[count] != right.m_x86fpu_State[count]) { return false; }
|
||||||
if (m_x86fpu_RoundingModel[count] != right.m_x86fpu_RoundingModel[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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue