Use werase() rather than wclear() to avoid screen flash

This commit is contained in:
James Booth
2013-04-22 00:02:56 +01:00
parent 81020e6d43
commit 5805ee3546
4 changed files with 9 additions and 9 deletions

View File

@@ -238,7 +238,7 @@ inp_win_reset(void)
static void
_clear_input(void)
{
wclear(inp_win);
werase(inp_win);
wmove(inp_win, 0, 0);
}