Explorar el Código

Include lines calculation in redraw

master
lostd lostd hace 10 años
padre
commit
4e818a3980
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      noice.c

+ 4
- 1
noice.c Ver fichero

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



Cargando…
Cancelar
Guardar