# HG changeset patch # User unc0rr # Date 1364843244 -14400 # Node ID 4ae5233abe7607b61ebc0328bbc763129ae41fe8 # Parent 586f6114898034949b6de5386efb0d7b30ede159 Hey, there was inc(Radius, 4) diff -r 586f61148980 -r 4ae5233abe76 hedgewars/uLandGraphics.pas --- a/hedgewars/uLandGraphics.pas Sun Mar 31 15:45:24 2013 -0400 +++ b/hedgewars/uLandGraphics.pas Mon Apr 01 23:07:24 2013 +0400 @@ -382,10 +382,10 @@ FillRoundInLand(x, y, Radius - 15, nullPixel); FillRoundInLand(X, Y, Radius, 0); FillRoundInLand(x, y, Radius + 4, ebcPixel); - tx:= Max(X - Radius - 1, 0); - dx:= Min(X + Radius + 1, LAND_WIDTH) - tx; - ty:= Max(Y - Radius - 1, 0); - dy:= Min(Y + Radius + 1, LAND_HEIGHT) - ty; + tx:= Max(X - Radius - 5, 0); + dx:= Min(X + Radius + 5, LAND_WIDTH) - tx; + ty:= Max(Y - Radius - 5, 0); + dy:= Min(Y + Radius + 5, LAND_HEIGHT) - ty; UpdateLandTexture(tx, dx, ty, dy, false); end;