render: remove assertion that isn't always true

It's not true for e.g. Cascadia code.
This commit is contained in:
Daniel Eklöf 2019-09-21 00:45:22 +02:00
parent 722290bae9
commit 55968413b6
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -87,7 +87,6 @@ font_baseline(const struct terminal *term)
assert(term->fextents.descent >= 0);
int diff = term->fextents.height - (term->fextents.ascent + term->fextents.descent);
assert(diff >= 0);
#if 0
LOG_INFO("height=%d, ascent=%d, descent=%d, diff=%d",