Skip to content
Snippets Groups Projects
Commit 12b6065a authored by Cinder's avatar Cinder
Browse files

Fix merge breakage

parent c690ce77
No related branches found
No related tags found
No related merge requests found
......@@ -1034,10 +1034,10 @@ void LLWorld::updateWaterObjects()
center_y = min_y + (wy >> 1);
S32 add_boundary[4] = {
(S32)(512 - (max_x - region_x)),
(S32)(512 - (max_y - region_y)),
(S32)(512 - (region_x - min_x)),
(S32)(512 - (region_y - min_y)) };
static_cast<S32>(512 - (max_x - (rwidth - 256) - region_x)),
static_cast<S32>(512 - (max_y - (rwidth - 256) - region_y)),
512 - ((S32)region_x - min_x),
512 - ((S32)region_y - min_y) };
S32 dir;
for (dir = 0; dir < 8; dir++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment