Parcourir la source

Include lines calculation in redraw

master
lostd lostd il y a 10 ans
Parent
révision
4e818a3980
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. +4
    -1
      noice.c

+ 4
- 1
noice.c Voir le fichier

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



Chargement…
Annuler
Enregistrer