Don't immediately fail when a very low tile resolution is specified manually

This commit is contained in:
Eric Fischer 2014-11-12 17:06:58 -08:00
parent 5595a087c7
commit e7aa05e7e4

View File

@ -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;