mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Make it work with appveyor's outdated OSG build
This commit is contained in:
parent
900b522d13
commit
cee608e31b
1 changed files with 6 additions and 3 deletions
|
@ -129,10 +129,13 @@ void ObjectCache::accept(osg::NodeVisitor &nv)
|
|||
++itr)
|
||||
{
|
||||
osg::Object* object = itr->second.first.get();
|
||||
osg::Node* node = object->asNode();
|
||||
if (object)
|
||||
{
|
||||
osg::Node* node = dynamic_cast<osg::Node*>(object);
|
||||
if (node)
|
||||
node->accept(nv);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue