mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-30 07:21:12 +00:00
Fix terrain assertion
This commit is contained in:
parent
235683e449
commit
f7e32a24c9
@ -402,8 +402,8 @@ namespace ESMTerrain
|
|||||||
int endX = startX + 1;
|
int endX = startX + 1;
|
||||||
int endY = startY + 1;
|
int endY = startY + 1;
|
||||||
|
|
||||||
assert(endX < ESM::Land::LAND_SIZE);
|
endX = std::min(endX, ESM::Land::LAND_SIZE-1);
|
||||||
assert(endY < ESM::Land::LAND_SIZE);
|
endY = std::min(endY, ESM::Land::LAND_SIZE-1);
|
||||||
|
|
||||||
// now get points in terrain space (effectively rounding them to boundaries)
|
// now get points in terrain space (effectively rounding them to boundaries)
|
||||||
float startXTS = startX * invFactor;
|
float startXTS = startX * invFactor;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user