Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2004-10-16 22:50:23 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2004-10-16 22:50:23 +0400
commit6c8d0487734a5d78444ac1dfba1730aede33320e (patch)
tree7c8a02a4c9cb74677977f0ea1fa322d56f4df745 /source
parent333f0a29db13fbc62d483ef5e4953be9a56de330 (diff)
remove std:: to please msvc6
Diffstat (limited to 'source')
-rw-r--r--source/gameengine/Converter/BL_ActionActuator.cpp2
-rw-r--r--source/gameengine/Ketsji/KX_IpoActuator.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Converter/BL_ActionActuator.cpp b/source/gameengine/Converter/BL_ActionActuator.cpp
index 5206f33ccd7..60d1ccf8bb8 100644
--- a/source/gameengine/Converter/BL_ActionActuator.cpp
+++ b/source/gameengine/Converter/BL_ActionActuator.cpp
@@ -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;
}
}
diff --git a/source/gameengine/Ketsji/KX_IpoActuator.cpp b/source/gameengine/Ketsji/KX_IpoActuator.cpp
index 6234a5809f2..397159b70b0 100644
--- a/source/gameengine/Ketsji/KX_IpoActuator.cpp
+++ b/source/gameengine/Ketsji/KX_IpoActuator.cpp
@@ -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