replaced "if (apm || !apm->valid())"
This commit is contained in:
committed by
Robert Osfield
parent
b41c5bde96
commit
4b6d9287bc
@@ -113,7 +113,7 @@ int main(int argc, char** argv)
|
||||
while (arguments.read("-p",pathfile))
|
||||
{
|
||||
osgGA::AnimationPathManipulator* apm = new osgGA::AnimationPathManipulator(pathfile);
|
||||
if (apm || !apm->valid())
|
||||
if (apm && !apm->getAnimationPath()->empty())
|
||||
{
|
||||
apm->setTimeScale(animationSpeed);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user