From 5bf2b5cc901a7d48ac7f5628f8dfae17d4584816 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 28 May 2010 16:48:05 +0000 Subject: [PATCH] Converted osg::notify to OSG_INFO etc. --- src/osgPlugins/md2/ReaderWriterMD2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/md2/ReaderWriterMD2.cpp b/src/osgPlugins/md2/ReaderWriterMD2.cpp index e8440017e..cc75bfcd7 100644 --- a/src/osgPlugins/md2/ReaderWriterMD2.cpp +++ b/src/osgPlugins/md2/ReaderWriterMD2.cpp @@ -264,7 +264,7 @@ load_md2 (const char *filename, const osgDB::ReaderWriter::Options* options) // couldn't find the referenced texture skin for this model 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 // 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); } else { // 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; } }