mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
Make it work with appveyor's outdated OSG build
This commit is contained in:
parent
900b522d13
commit
cee608e31b
@ -129,9 +129,12 @@ void ObjectCache::accept(osg::NodeVisitor &nv)
|
||||
++itr)
|
||||
{
|
||||
osg::Object* object = itr->second.first.get();
|
||||
osg::Node* node = object->asNode();
|
||||
if (node)
|
||||
node->accept(nv);
|
||||
if (object)
|
||||
{
|
||||
osg::Node* node = dynamic_cast<osg::Node*>(object);
|
||||
if (node)
|
||||
node->accept(nv);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user