From e7f571c9c35f6f725e85bd26e2a65f60245c925f Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 3 Feb 2016 16:51:44 -0800 Subject: [PATCH] Even if the maxzoom is very high, don't use more bits of precision than exist --- geojson.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/geojson.c b/geojson.c index 3968970..1379a4d 100644 --- a/geojson.c +++ b/geojson.c @@ -2259,6 +2259,9 @@ int main(int argc, char **argv) { } geometry_scale = 32 - (full_detail + maxzoom); + if (geometry_scale < 0) { + geometry_scale = 0; + } if ((basezoom < 0 || droprate < 0) && (gamma < 0)) { // Can't use randomized (as opposed to evenly distributed) dot dropping