summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/lib/3dmap.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/lib/3dmap.ts b/gui/src/renderer/lib/3dmap.ts
index a39b9e5612..61f86d97b9 100644
--- a/gui/src/renderer/lib/3dmap.ts
+++ b/gui/src/renderer/lib/3dmap.ts
@@ -174,14 +174,14 @@ class Globe {
this.landVertexBuffer,
this.landContourIndexBuffer,
contourColor,
- this.gl.LINES,
+ this.gl.LINE_STRIP,
);
// We scale down to render the land triangles behind/under the country contour lines.
mat4.scale(
globeViewMatrix, // destination matrix
globeViewMatrix, // matrix to scale
- [0.9999, 0.9999, 0.9999], // amount to scale
+ [0.99999, 0.99999, 0.99999], // amount to scale
);
// Draw land triangles.