mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-17 11:43:25 +00:00
Remove unused data field (#3133)
This commit is contained in:
parent
957c25a491
commit
1109cc3ac7
@ -191,7 +191,7 @@ namespace MWRender
|
||||
if (model.empty()) continue;
|
||||
model = "meshes/" + model;
|
||||
|
||||
instances[model].emplace_back(std::move(ref), std::move(model));
|
||||
instances[model].emplace_back(std::move(ref));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -24,10 +24,8 @@ namespace MWRender
|
||||
{
|
||||
ESM::Position mPos;
|
||||
float mScale;
|
||||
std::string mModel;
|
||||
|
||||
GroundcoverEntry(const ESM::CellRef& ref, const std::string& model):
|
||||
mPos(ref.mPos), mScale(ref.mScale), mModel(model)
|
||||
GroundcoverEntry(const ESM::CellRef& ref) : mPos(ref.mPos), mScale(ref.mScale)
|
||||
{}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user