Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1319 → Rev 1318

/sved/trunk/sved.c
213,11 → 213,8
if (y == screenh - 2) break;
}
 
/* fill all lines below if empty (and they need to be redrawn) */
if (l == NULL) {
while ((y < screenh - 1) && (y < uidirtyto)) {
mdr_cout_char_rep(y++, 0, ' ', scheme[COL_TXT], screenw - 1);
}
while (y < screenh - 1) {
mdr_cout_char_rep(y++, 0, ' ', scheme[COL_TXT], screenw - 1);
}
}