Converted osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield 2010-05-28 16:48:05 +00:00
parent c56b29b7fe
commit 5bf2b5cc90

View File

@ -264,7 +264,7 @@ load_md2 (const char *filename, const osgDB::ReaderWriter::Options* options)
// couldn't find the referenced texture skin for this model // couldn't find the referenced texture skin for this model
skin_textures.push_back (NULL); skin_textures.push_back (NULL);
osg::notify(osg::WARN) << "MD2 Loader: Couldn't load skin " << imgname << " referenced by model " << filename << std::endl; OSG_WARN << "MD2 Loader: Couldn't load skin " << imgname << " referenced by model " << filename << std::endl;
} }
#else #else
// load the single skin // load the single skin
@ -299,7 +299,7 @@ load_md2 (const char *filename, const osgDB::ReaderWriter::Options* options)
skin_texture->setFilter (osg::Texture2D::MAG_FILTER, osg::Texture2D::NEAREST); skin_texture->setFilter (osg::Texture2D::MAG_FILTER, osg::Texture2D::NEAREST);
} else { } else {
// couldn't find the referenced texture skin for this model // couldn't find the referenced texture skin for this model
osg::notify(osg::WARN) << "MD2 Loader: Couldn't load skin " << imgname << " referenced by model " << filename << std::endl; OSG_WARN << "MD2 Loader: Couldn't load skin " << imgname << " referenced by model " << filename << std::endl;
} }
} }