osgDB: Fix handling of return value of loadLibrary in Registry.
"Unable to load ..." was printed if the library could be loaded, and it wasn't if not.
This commit is contained in:
parent
eafab0fc35
commit
b7c429a72a
@ -582,7 +582,7 @@ void Registry::readCommandLine(osg::ArgumentParser& arguments)
|
|||||||
std::string value;
|
std::string value;
|
||||||
while(arguments.read("-l",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;
|
OSG_NOTICE<<"Unable to load library : "<<value<<std::endl;
|
||||||
}
|
}
|
||||||
@ -591,7 +591,7 @@ void Registry::readCommandLine(osg::ArgumentParser& arguments)
|
|||||||
while(arguments.read("-e",value))
|
while(arguments.read("-e",value))
|
||||||
{
|
{
|
||||||
std::string libName = createLibraryNameForExtension(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;
|
OSG_NOTICE<<"Unable to load library : "<<libName<<std::endl;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user