mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-24 10:44:51 +00:00
Don't immediately fail when a very low tile resolution is specified manually
This commit is contained in:
parent
5595a087c7
commit
e7aa05e7e4
2
tile.cc
2
tile.cc
@ -346,7 +346,7 @@ long long write_tile(struct index *start, struct index *end, char *metabase, uns
|
||||
int line_detail;
|
||||
static bool evaluated = false;
|
||||
|
||||
for (line_detail = detail; line_detail >= MIN_DETAIL; line_detail--) {
|
||||
for (line_detail = detail; line_detail >= MIN_DETAIL || line_detail == detail; line_detail--) {
|
||||
GOOGLE_PROTOBUF_VERIFY_VERSION;
|
||||
|
||||
struct pool keys, values;
|
||||
|
Loading…
x
Reference in New Issue
Block a user