소스 검색

Include lines calculation in redraw

master
lostd lostd 10 년 전
부모
커밋
4e818a3980
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      noice.c

+ 4
- 1
noice.c 파일 보기

@@ -214,8 +214,11 @@ begin:
qsort(dents, n, sizeof(*dents), dentcmp);

for (;;) {
int nlines = MIN(LINES - 4, n);
int nlines;

redraw:
nlines = MIN(LINES - 4, n);

/* Clean screen */
erase();



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