Fix a merge problem.

This commit is contained in:
Nicholas Marriott
2026-06-16 10:24:06 +01:00
parent 1596f9c9f5
commit c809aea278

3
tty.c
View File

@@ -1446,7 +1446,8 @@ tty_cmd_redrawline(struct tty *tty, const struct tty_ctx *ctx)
if (rr->nx == 0) if (rr->nx == 0)
continue; continue;
tty_draw_line(tty, ctx->s, ctx->ocx + i + rr->px - x, tty_draw_line(tty, ctx->s, ctx->ocx + i + rr->px - x,
ctx->ocy, rr->nx, rr->px, ry, &ctx->style_ctx); ctx->ocy, rr->nx, rr->px, ry, &ctx->defaults,
ctx->palette);
} }
} }
} }