Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
fix roundabout not closed #1450
Browse files Browse the repository at this point in the history
  • Loading branch information
hanchao authored and kkaefer committed Jun 14, 2015
1 parent 450a6be commit b8c2515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mbgl/renderer/line_bucket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void LineBucket::addGeometry(const std::vector<Coordinate>& vertices) {
for (size_t i = 0; i < len; ++i) {
if (closed && i == len - 1) {
// if the line is closed, we treat the last vertex like the first
nextVertex = vertices[i];
nextVertex = vertices[1];
} else if (i + 1 < len) {
// just the next vertex
nextVertex = vertices[i + 1];
Expand Down

0 comments on commit b8c2515

Please sign in to comment.