forked from teamnwah/openmw-tes3coop
cell.hpp/insertObj: don't load empty mesh names
This commit is contained in:
parent
6b6e42b641
commit
522a5bbaf6
1 changed files with 3 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue