Removed compiler warning.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@3685 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2009-07-01 12:05:24 +00:00
parent d9e90576c7
commit da030d923d

View File

@ -156,8 +156,8 @@ float Ipo::get() const
// FIXME: only const implemented atm.
return m_points[n].Y;
}
core::vector2df c = 3*(m_handle2[n]-m_points[n]);
core::vector2df b = 3*(m_handle1[n+1]-m_handle2[n])-c;
core::vector2df c = 3.0f*(m_handle2[n]-m_points[n]);
core::vector2df b = 3.0f*(m_handle1[n+1]-m_handle2[n])-c;
core::vector2df a = m_points[n+1] - m_points[n] - c - b;
float t = (m_time-m_points[n].X)/(m_points[n+1].X-m_points[n].X);
core::vector2df r = ((a*t+b)*t+c)*t+m_points[n];