From 0cddd5649838c0d37c0e4b12786d040ffdb01c97 Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 9 Dec 2025 01:00:34 -0700 Subject: meow --- src/map.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/map.c') diff --git a/src/map.c b/src/map.c index cf0715c..63125ac 100644 --- a/src/map.c +++ b/src/map.c @@ -64,7 +64,8 @@ void renderMapUtilityPoleLines(Image* map, const World* world) end.x *= WORLD_IMAGE_WIDTH / world->size.x; end.z *= WORLD_IMAGE_HEIGHT / world->size.z; - ImageDrawLine(map, start.x, start.z, end.x, end.z, BLACK); + ImageDrawLine(map, start.x, start.z, end.x, end.z, + MAP_UTILITY_POLE_LINE_COLOR); // Draw pole markers. ImageDrawCircle(map, start.x, start.z, 1, BROWN); -- cgit v1.2.3