remove std:: to please msvc6

This commit is contained in:
Nathan Letwory
2004-10-16 18:50:23 +00:00
parent 333f0a29db
commit 6c8d048773
2 changed files with 2 additions and 2 deletions

View File

@@ -218,7 +218,7 @@ bool BL_ActionActuator::Update(double curtime, bool frame)
if (length){
if (m_localtime < m_starttime || m_localtime > m_endtime)
{
m_localtime = m_starttime + std::fmod(m_localtime, length);
m_localtime = m_starttime + fmod(m_localtime, length);
wrap = true;
}
}

View File

@@ -305,7 +305,7 @@ bool KX_IpoActuator::Update(double curtime, bool frame)
if (!m_bNegativeEvent){
/* Perform wraparound */
SetLocalTime(curtime);
m_localtime = m_startframe + std::fmod(m_localtime, m_startframe - m_endframe);
m_localtime = m_startframe + fmod(m_localtime, m_startframe - m_endframe);
SetStartTime(curtime);
}
else