Changed: When shape is a pacs_prim file, don't put "Not found" message

--HG--
branch : develop
feature/pipeline-tools
kervala 8 years ago
parent a7531eac0d
commit fa57e558a5

@ -573,10 +573,11 @@ bool CInstanceGroup::addToScene (CScene& scene, IDriver *driver, uint selectedTe
else
{
_Instances[i] = scene.createInstance (shapeName);
}
if( _Instances[i] == NULL )
{
nlwarning("Not found '%s' file", shapeName.c_str());
if (_Instances[i] == NULL)
{
nlwarning("Not found '%s' file", shapeName.c_str());
}
}
}
}

Loading…
Cancel
Save