Remove unused PathgridGraph::mIsExterior

pull/578/head
elsid 5 years ago
parent e6231f67e6
commit 095a45c714
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -52,7 +52,6 @@ namespace MWMechanics
PathgridGraph::PathgridGraph(const MWWorld::CellStore *cell)
: mCell(nullptr)
, mPathgrid(nullptr)
, mIsExterior(0)
, mGraph(0)
, mIsGraphConstructed(false)
, mSCCId(0)
@ -106,7 +105,6 @@ namespace MWMechanics
return true;
mCell = cell->getCell();
mIsExterior = cell->getCell()->isExterior();
mPathgrid = MWBase::Environment::get().getWorld()->getStore().get<ESM::Pathgrid>().search(*cell->getCell());
if(!mPathgrid)
return false;

@ -44,7 +44,6 @@ namespace MWMechanics
const ESM::Cell *mCell;
const ESM::Pathgrid *mPathgrid;
bool mIsExterior;
struct ConnectedPoint // edge
{

Loading…
Cancel
Save