# HG changeset patch # User Wuzzy # Date 1593429430 -7200 # Node ID f75f8729cc5a108361eeb47eb37a620cd7438461 # Parent 85d2afe34116a4a0d17a9613c1a3040bd4e07e94 Increase X camera limit back to 2048 Oops, the number 0 was done by mistake diff -r 85d2afe34116 -r f75f8729cc5a hedgewars/uConsts.pas --- a/hedgewars/uConsts.pas Mon Jun 29 13:14:18 2020 +0200 +++ b/hedgewars/uConsts.pas Mon Jun 29 13:17:10 2020 +0200 @@ -234,7 +234,7 @@ cDefaultZoomLevel = 2.0; // 100% zoom // Maximum camera positions, values are "pixels outside the mainland" - cCamLimitX = 0; // X (left/right) camera limit, no border. Note: Influences sndFlyAway + cCamLimitX = 2048; // X (left/right) camera limit, no border. Note: Influences sndFlyAway cCamLimitY = 2048; // Top Y camera limit, no border cCamLimitBorderX = 2048; // X (left/right) camera limit, with border cCamLimitBorderY = 2048; // Top Y camera limit, with border