Made the Warning font file not found message consistent with other file not

found messages.
This commit is contained in:
Robert Osfield 2001-11-19 13:14:38 +00:00
parent bc44b9342b
commit c9535c68b4

View File

@ -51,7 +51,7 @@ std::string findFontFile(const std::string& str)
filename = osgDB::findFileInPath(str.c_str(),s_FontFilePath);
if (filename) return std::string(filename);
}
osg::notify(osg::WARN)<<"Unable to find font file '"<<str<<"'"<<endl;
osg::notify(osg::WARN)<<"Warning: font file \""<<str<<"\" not found."<<endl;
return std::string();
}