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

This commit is contained in:
kervala 2016-10-25 16:04:06 +02:00
parent ad0ba5c6b1
commit 25502f0cca

View file

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