diff -r 08f4627ad2b3 -r 64e677349124 hedgewars/uGears.pas --- a/hedgewars/uGears.pas Sun Nov 07 16:33:42 2010 +0300 +++ b/hedgewars/uGears.pas Sun Nov 07 16:41:03 2010 +0300 @@ -1060,8 +1060,8 @@ begin if not (((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) and ((Gear^.State and gstAttacked) = 0)) then exit; - DrawTexture(round(int64(sx) + 16), round(int64(sy) + 16), ropeIconTex); - DrawTextureF(SpritesData[sprAMAmmos].Texture, 0.75, round(int64(sx) + 30), round(int64(sy) + 30), ord(CurAmmoType) - 1, 1, 32, 32); + DrawTexture(sx + 16, sy + 16, ropeIconTex); + DrawTextureF(SpritesData[sprAMAmmos].Texture, 0.75, sx + 30, sy + 30, ord(CurAmmoType) - 1, 1, 32, 32); end; end;