1
0
Fork 0
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:
elsid 2020-06-11 21:43:51 +02:00
parent e6231f67e6
commit 095a45c714
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40
2 changed files with 0 additions and 3 deletions

View file

@ -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;

View file

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