From fb61919c96658bc6ac3eaf94ccbfbfdf8b73e190 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sat, 23 Nov 2024 12:02:09 +0000 Subject: [PATCH] remove unneeded record update --- frontend/src/TileMap.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/TileMap.elm b/frontend/src/TileMap.elm index e9a63df..e863ec0 100644 --- a/frontend/src/TileMap.elm +++ b/frontend/src/TileMap.elm @@ -61,7 +61,7 @@ reflect c = Coord -c.x -c.y -- translate : a -> a -> a translate base offset = - { base | x = (base.x + offset.x), y = (base.y + offset.y) } + { x = (base.x + offset.x), y = (base.y + offset.y) } translatePixels : Coord -> ZoomLevel -> (Int, Int) -> Coord translatePixels old z (x, y) = translate old (pixelsToCoord z (x, y))