mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 07:53:53 +00:00
Remove unused PathgridGraph::mIsExterior
This commit is contained in:
parent
e6231f67e6
commit
095a45c714
2 changed files with 0 additions and 3 deletions
|
@ -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…
Reference in a new issue