aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}
}
}