diff options
| author | Dan Lynch | 2006-06-27 19:18:11 +0200 |
|---|---|---|
| committer | Dan Lynch | 2006-06-27 19:18:11 +0200 |
| commit | 7f4cfe4a848d4e2c05337bf4d6a7f0b12d582f61 (patch) | |
| tree | ada322c097dd004e63a3488da85b100239108d6e /src/hci | |
| parent | - works with test ansi tty, but will need a rethink when we start (diff) | |
| download | ipxe-7f4cfe4a848d4e2c05337bf4d6a7f0b12d582f61.tar.gz ipxe-7f4cfe4a848d4e2c05337bf4d6a7f0b12d582f61.tar.xz ipxe-7f4cfe4a848d4e2c05337bf4d6a7f0b12d582f61.zip | |
- put in the screen initialisation stuff and clear the screen...
Diffstat (limited to 'src/hci')
| -rw-r--r-- | src/hci/mucurses/wininit.c | 5 |
1 files 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; } |
