# HG changeset patch # User nemo # Date 1315745661 14400 # Node ID 103e3a80daa6ce676108192647f3442b7d0cd4d6 # Parent 9fd9d159ca32d4bc3eefe3178727eb17a8a012d0 Try the same offsetting as X - I think it helps w/ mikade's Space Invasion camera problem diff -r 9fd9d159ca32 -r 103e3a80daa6 hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Sat Sep 10 22:55:31 2011 -0400 +++ b/hedgewars/uWorld.pas Sun Sep 11 08:54:21 2011 -0400 @@ -1196,7 +1196,7 @@ else begin CursorPoint.X:= (prevPoint.X * 7 + hwRound(FollowGear^.X) + hwSign(FollowGear^.dX) * 100 + WorldDx) div 8; - CursorPoint.Y:= (prevPoint.Y * 7 + cScreenHeight - (hwRound(FollowGear^.Y) + WorldDy)) div 8; + CursorPoint.Y:= (prevPoint.Y * 7 + cScreenHeight - (hwRound(FollowGear^.Y)+ hwSign(FollowGear^.dX) * 100 + WorldDy)) div 8; end; wdy:= trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - cWaterLine - cVisibleWater;