From 7f4cfe4a848d4e2c05337bf4d6a7f0b12d582f61 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Tue, 27 Jun 2006 17:18:11 +0000 Subject: [PATCH] - put in the screen initialisation stuff and clear the screen... --- src/hci/mucurses/wininit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/hci/mucurses/wininit.c b/src/hci/mucurses/wininit.c index 1bffe2e47..134ea944e 100644 --- a/src/hci/mucurses/wininit.c +++ b/src/hci/mucurses/wininit.c @@ -14,9 +14,10 @@ WINDOW *initscr ( void ) { /* determine console size */ /* initialise screen */ + curscr->init( curscr ); stdscr->height = LINES; stdscr->width = COLS; - /* set previously unknown window attributes */ - /* refresh screen */ + werase( stdscr ); + return stdscr; }