--- a/hedgewars/uWorld.pas Sat May 18 00:55:59 2019 +0200
+++ b/hedgewars/uWorld.pas Sat May 18 03:07:21 2019 +0200
@@ -1708,6 +1708,16 @@
begin
DrawTextureF(ropeIconTex, 1, (cScreenWidth shr 1) - offsetX, cScreenHeight - offsetY, 0, 1, 32, 32);
DrawTextureF(SpritesData[sprAMAmmos].Texture, 0.90, (cScreenWidth shr 1) - offsetX, cScreenHeight - offsetY, ord(amLowGravity) - 1, 1, 32, 32);
+{$IFDEF USE_TOUCH_INTERFACE}
+ offsetX := offsetX - 33
+{$ELSE}
+ offsetX := offsetX + 33
+{$ENDIF}
+ end;
+ if cLaserSighting then
+ begin
+ DrawTextureF(ropeIconTex, 1, (cScreenWidth shr 1) - offsetX, cScreenHeight - offsetY, 0, 1, 32, 32);
+ DrawTextureF(SpritesData[sprAMAmmos].Texture, 0.90, (cScreenWidth shr 1) - offsetX, cScreenHeight - offsetY, ord(amLaserSight) - 1, 1, 32, 32);
end;
end;