1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 22:45:34 +00:00

Terrain: fix an embarrassing copy&paste mistake.

This commit is contained in:
scrawl 2014-02-17 22:09:07 +01:00
parent 8730b61362
commit 6c863486e1

View file

@ -225,7 +225,7 @@ void QuadTreeNode::initAabb()
break;
case Terrain::Align_XZ:
minH = mBounds.getMinimum().y;
maxH = mBounds.getMinimum().y;
maxH = mBounds.getMaximum().y;
break;
case Terrain::Align_YZ:
minH = mBounds.getMinimum().x;