Procházet zdrojové kódy

Include lines calculation in redraw

master
lostd lostd před 10 roky
rodič
revize
4e818a3980
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      noice.c

+ 4
- 1
noice.c Zobrazit soubor

@@ -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();



Načítá se…
Zrušit
Uložit