Merge pull request #490 from torokati44/master

osgDB: Fix handling of return value of loadLibrary in Registry.
This commit is contained in:
OpenSceneGraph git repository
2018-03-02 09:43:24 +00:00
committed by GitHub

View File

@@ -582,7 +582,7 @@ void Registry::readCommandLine(osg::ArgumentParser& arguments)
std::string value;
while(arguments.read("-l",value))
{
if (loadLibrary(value)!=NOT_LOADED)
if (loadLibrary(value)==NOT_LOADED)
{
OSG_NOTICE<<"Unable to load library : "<<value<<std::endl;
}
@@ -591,7 +591,7 @@ void Registry::readCommandLine(osg::ArgumentParser& arguments)
while(arguments.read("-e",value))
{
std::string libName = createLibraryNameForExtension(value);
if (loadLibrary(libName)!=NOT_LOADED)
if (loadLibrary(libName)==NOT_LOADED)
{
OSG_NOTICE<<"Unable to load library : "<<libName<<std::endl;
}