http://git.etherboot.org
/
people
/
xl0
/
gpxe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11e2806
)
- put in the screen initialisation stuff and clear the screen...
author
Dan Lynch
<danjlynch@users.sourceforge.net>
Tue, 27 Jun 2006 17:18:11 +0000
(17:18 +0000)
committer
Dan Lynch
<danjlynch@users.sourceforge.net>
Tue, 27 Jun 2006 17:18:11 +0000
(17:18 +0000)
src/hci/mucurses/wininit.c
patch
|
blob
|
history
diff --git
a/src/hci/mucurses/wininit.c
b/src/hci/mucurses/wininit.c
index
1bffe2e
..
134ea94
100644
(file)
--- 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;
}