소스 검색

Fix a crash with multiline input caused by losing the figfont information.

pull/1/head
Sam Hocevar sam 15 년 전
부모
커밋
614e317810
1개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. +7
    -2
      src/figlet.c

+ 7
- 2
src/figlet.c 파일 보기

@@ -58,9 +58,14 @@ static int feed_figlet(context_t *cx, uint32_t ch, uint32_t attr)

static int flush_figlet(context_t *cx)
{
/* We copy cx->cv into cx->torender instead of swapping pointers
* because that would lose the figfont information. */
/* FIXME: use caca_copy_canvas() or whatever when it's implemented. */
int ret = caca_flush_figlet(cx->cv);
cx->torender = cx->cv;
cx->cv = caca_create_canvas(0, 0);
cx->torender = caca_create_canvas(caca_get_canvas_width(cx->cv),
caca_get_canvas_height(cx->cv));
caca_blit(cx->torender, 0, 0, cx->cv, NULL);
caca_set_canvas_size(cx->cv, 0, 0);
return ret;
}



불러오는 중...
취소
저장