diff -r adf1aee202c6 -r 9c8b385dc9a1 hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Thu Mar 15 22:46:37 2007 +0000 +++ b/hedgewars/uWorld.pas Sat Mar 17 18:17:19 2007 +0000 @@ -403,7 +403,7 @@ exit end else begin - CursorPoint.x:= (CursorPoint.x * 7 + (hwRound(FollowGear^.X + hwSign(FollowGear^.dX) * 100) + WorldDx)) div 8; + CursorPoint.x:= (CursorPoint.x * 7 + (hwRound(FollowGear^.X) + hwSign(FollowGear^.dX) * 100) + WorldDx) div 8; CursorPoint.y:= (CursorPoint.y * 7 + (hwRound(FollowGear^.Y) + WorldDy)) div 8 end;