Use werase() rather than wclear()

This commit is contained in:
James Booth
2013-04-21 23:57:47 +01:00
parent be41a376c5
commit 9a59631cbc
4 changed files with 9 additions and 9 deletions

View File

@@ -500,7 +500,7 @@ ui_switch_win(const int i)
void
ui_clear_current(void)
{
wclear(current->win);
werase(current->win);
dirty = TRUE;
}