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