1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-01 05:09:41 +00:00

Fix(CS): Remove unreachable code as land data will always be present

This commit is contained in:
Dave Corley 2023-12-09 11:51:25 -06:00
parent 014e5118e9
commit 78fd135764

View file

@ -158,12 +158,7 @@ void CSVRender::Cell::updateLand()
mCellBorder = std::make_unique<CellBorder>(mCellNode, mCoordinates);
mCellBorder->buildShape(esmLand);
return;
}
// No land data
unloadLand();
}
void CSVRender::Cell::unloadLand()