From 4de57b960d8d2fd390e0e405eb15f706e2ce1ff4 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 24 Sep 2014 17:40:32 -0700 Subject: [PATCH] Bump up tolerance. Anything higher is visibly off. --- tile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile.cc b/tile.cc index 6716294..9be0285 100644 --- a/tile.cc +++ b/tile.cc @@ -340,7 +340,7 @@ void douglas_peucker(struct draw *geom, int n, double e) { } int simplify_lines(struct draw *geom, int n, int z, int detail) { - int res = 1 << (32 - detail - z); + int res = 1 << (32 - detail - z + 2); int i; for (i = 0; i < n; i++) {