Fix for warning under Windows.

This commit is contained in:
Robert Osfield
2003-03-03 20:28:07 +00:00
parent 99e7c50d7a
commit fcbf1e200a

View File

@@ -122,5 +122,5 @@ osg::Vec2 FreeTypeFont::getKerning(unsigned int leftcharcode,unsigned int rightc
bool FreeTypeFont::hasVertical() const
{
return FT_HAS_VERTICAL(_face);
return FT_HAS_VERTICAL(_face)!=0;
}