Remove logging

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8871 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2011-06-10 01:15:39 +00:00
parent 97eec932e8
commit 2a482d7577
2 changed files with 0 additions and 6 deletions

View File

@@ -1419,9 +1419,6 @@ void Track::adjustForFog(scene::ISceneNode *node)
}
else
{
unsigned int t = node->getType();
const char* type = (const char*)&t;
printf("Unknown mesh type %c%c%c%c\n", type[0], type[1], type[2], type[3]);
node->setMaterialFlag(video::EMF_FOG_ENABLE, m_use_fog);
}

View File

@@ -163,9 +163,6 @@ void adjustForFog(scene::ISceneNode *node, bool enable)
}
else
{
unsigned int t = node->getType();
const char* type = (const char*)&t;
printf("Unknown mesh type %c%c%c%c\n", type[0], type[1], type[2], type[3]);
node->setMaterialFlag(video::EMF_FOG_ENABLE, enable);
}