Fixed compilation (typo in name).

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9361 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2011-07-26 01:14:59 +00:00
parent 2f571eec10
commit a9369a8cf5

View File

@ -183,7 +183,7 @@ void RubberBall::update(float dt)
m_interval = m_height / 10.0f;
// Avoid too small hops and esp. a division by zero
if(m_interval<0.01f)
m_inteval = 0.01f;
m_interval = 0.01f;
}
else
{