Removed warning for duplicated characters, since they are now ordered properly

and not considered an error anymore.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@6996 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2010-12-13 11:31:20 +00:00
parent 283c47fad5
commit 970d261f4b

View File

@@ -191,12 +191,6 @@ void ScalableFont::doReadXmlFile(io::IXMLReader* xml)
}
rectangle.LowerRightCorner.Y = val;
#ifdef DEBUG
if (CharacterMap.find(ch) != CharacterMap.end())
{
fprintf(stderr, "[ScalableFont] WARNING: Font conflict, two images have character %i\n", (int)ch);
}
#endif
CharacterMap[ch] = Areas.size();
//std::cout << "Inserting character '" << (int)ch << "' with area " << Areas.size() << std::endl;