aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-12-08 19:33:33 +0000
committernathan <nathansmith@disroot.org>2025-12-08 19:33:33 +0000
commit65ce16ba67cbaf3d65d42c03103397be1f05b947 (patch)
tree8cc6c3c975684ee13df47047c958d17139f5ea9d
parentab0b34db88d715e0f0828c691defb474de589837 (diff)
downloadFindThings-65ce16ba67cbaf3d65d42c03103397be1f05b947.tar.gz
FindThings-65ce16ba67cbaf3d65d42c03103397be1f05b947.tar.bz2
FindThings-65ce16ba67cbaf3d65d42c03103397be1f05b947.zip
Pole thingy
-rw-r--r--src/map.c3
1 files changed, 3 insertions, 0 deletions
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);
}
}
}