mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
sixel: call decsixel() directly, instead of going through sixel_put()
This commit is contained in:
parent
47c32d5913
commit
b1a4d43845
1 changed files with 2 additions and 2 deletions
4
sixel.c
4
sixel.c
|
|
@ -1401,7 +1401,7 @@ decgra(struct terminal *term, uint8_t c)
|
|||
}
|
||||
|
||||
term->sixel.state = SIXEL_DECSIXEL;
|
||||
sixel_put(term, c);
|
||||
decsixel(term, c);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -1512,7 +1512,7 @@ decgci(struct terminal *term, uint8_t c)
|
|||
term->sixel.color = term->sixel.palette[term->sixel.color_idx];
|
||||
|
||||
term->sixel.state = SIXEL_DECSIXEL;
|
||||
sixel_put(term, c);
|
||||
decsixel(term, c);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue