Fixed compilation problem (const vs no-const mismatch).

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@6039 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2010-09-18 07:30:58 +00:00
parent 4433585efa
commit 94c4f40bd1

View File

@ -417,7 +417,7 @@ void Track::createPhysicsModel(unsigned int main_track_count)
* \param mesh The mesh to convert.
* \param node The scene node.
*/
void Track::convertTrackToBullet(const scene::ISceneNode *node)
void Track::convertTrackToBullet(scene::ISceneNode *node)
{
const core::vector3df &pos = node->getPosition();
const core::vector3df &hpr = node->getRotation();