Fixed compiler warnings.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11364 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2012-07-04 01:38:32 +00:00
parent 826cc8b18d
commit 92538784b1

View File

@ -214,8 +214,8 @@ TrackObject::TrackObject(const XMLNode &xml_node)
else
{
m_node = irr_driver->addMesh(m_mesh);
m_frame_start = 0.0f;
m_frame_end = 0.0f;
m_frame_start = 0;
m_frame_end = 0;
}
#ifdef DEBUG
std::string debug_name = model_name+" (track-object)";
@ -288,8 +288,8 @@ TrackObject::TrackObject(const core::vector3df& pos, const core::vector3df& hpr,
else
{
m_node = irr_driver->addMesh(m_mesh);
m_frame_start = 0.0f;
m_frame_end = 0.0f;
m_frame_start = 0;
m_frame_end = 0;
}
#ifdef DEBUG