diff -r 165a040e4cfa -r 236bbd12d4d9 hedgewars/tunsetborder.inc --- a/hedgewars/tunsetborder.inc Mon Jan 22 18:32:00 2007 +0000 +++ b/hedgewars/tunsetborder.inc Tue Jan 23 16:59:05 2007 +0000 @@ -3,6 +3,7 @@ Y:= Y + dY; tx:= hwRound(X); ty:= hwRound(Y); - if ((ty and $FFFFFC00) = 0) and ((tx and $FFFFF800) = 0)and (Land[ty, tx] = $FFFFFF) then - SetLandPixel(ty, tx) + if ((ty and $FFFFFC00) = 0) and + ((tx and $FFFFF800) = 0) and + (Land[ty, tx] = $FFFFFF) then SetLandPixel(ty, tx) end;