diff --git a/sixel.c b/sixel.c index fbd0f077..5316c0ad 100644 --- a/sixel.c +++ b/sixel.c @@ -1456,6 +1456,11 @@ decgri(struct terminal *term, uint8_t c) term->sixel.state = SIXEL_DECSIXEL; break; } + + default: + term->sixel.state = SIXEL_DECSIXEL; + sixel_put(term, c); + break; } }