remove std:: to please msvc6
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user