From 65ce16ba67cbaf3d65d42c03103397be1f05b947 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 8 Dec 2025 12:33:33 -0700 Subject: Pole thingy --- src/map.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/map.c') diff --git a/src/map.c b/src/map.c index e2abaeb..cf0715c 100644 --- a/src/map.c +++ b/src/map.c @@ -65,6 +65,9 @@ void renderMapUtilityPoleLines(Image* map, const World* world) end.z *= WORLD_IMAGE_HEIGHT / world->size.z; ImageDrawLine(map, start.x, start.z, end.x, end.z, BLACK); + + // Draw pole markers. + ImageDrawCircle(map, start.x, start.z, 1, BROWN); } } } -- cgit v1.2.3