cell.hpp/insertObj: don't load empty mesh names

This commit is contained in:
Nicolay Korslund 2010-06-11 21:08:33 +02:00
parent 6b6e42b641
commit 522a5bbaf6

View file

@ -31,7 +31,9 @@ namespace MWRender
void insertObj(const T& liveRef)
{
assert (liveRef.base != NULL);
insertMesh ("meshes\\" + liveRef.base->model, liveRef.ref);
const std::string &model = liveRef.base->model;
if(!model.empty())
insertMesh ("meshes\\" + model, liveRef.ref);
}
template<typename T>