remove unneeded record update

This commit is contained in:
Daniel Barlow 2024-11-23 12:02:09 +00:00
parent ff0e5fe75c
commit fb61919c96

View File

@ -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))