more tiny water sync

This commit is contained in:
aap 2020-12-16 13:32:03 +01:00
parent 0d97a31ce9
commit 78c7459b3a
1 changed files with 0 additions and 4 deletions

View File

@ -179,14 +179,10 @@ WaterLevelInitialise(Const char *pWaterDat)
int32 t = WATER_HUGE_Y(CWaterLevel::ms_aWaterRects[i].top);
int32 b = WATER_HUGE_Y(CWaterLevel::ms_aWaterRects[i].bottom) + 1.0f;
#ifdef FIX_BUGS
// water.dat has rects that go out of bounds
// which causes memory corruption
l = clamp(l, 0, MAX_SMALL_SECTORS - 1);
r = clamp(r, 0, MAX_SMALL_SECTORS - 1);
t = clamp(t, 0, MAX_SMALL_SECTORS - 1);
b = clamp(b, 0, MAX_SMALL_SECTORS - 1);
#endif
for (int32 x = l; x <= r; x++)
{