mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-15 07:17:46 -04:00
cell.hpp/insertObj: don't load empty mesh names
This commit is contained in:
parent
6b6e42b641
commit
522a5bbaf6
@ -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…
x
Reference in New Issue
Block a user