sixel: mention why we add one

This commit is contained in:
Daniel Eklöf 2020-02-22 11:37:25 +01:00
parent 7625264851
commit a418521ced
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -309,8 +309,10 @@ decgci(struct terminal *term, uint8_t c)
int nparams = term->sixel.param_idx;
if (nparams > 0)
if (nparams > 0) {
/* Add one, as we use idx==0 for background color (TODO) */
term->sixel.color_idx = min(1 + term->sixel.params[0], COLOR_COUNT - 1);
}
if (nparams > 4) {
unsigned format = term->sixel.params[1];