Screen clearing have been modified.

src/layout.c (clr_scr): tty_fill_region() is used instead of dlg_erase()
to clear screen.
This commit is contained in:
Andrew Borodin 2009-06-03 23:13:57 +04:00
parent 30fd7fc34a
commit a1bbecce76

View File

@ -570,7 +570,7 @@ void
clr_scr (void)
{
tty_set_normal_attrs ();
dlg_erase (midnight_dlg);
tty_fill_region (0, 0, LINES, COLS, ' ');
tty_refresh ();
}