Update bayou to use ACS_ macros for line drawing characters.
Signed-off-by: Ulf Jordan <jordan@chalmers.se> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3735 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
c1c207f627
commit
8c95338f35
|
@ -67,8 +67,8 @@ void draw_menu(void)
|
|||
|
||||
wattrset(menuwin, COLOR_PAIR(3));
|
||||
wclear(menuwin);
|
||||
wborder(menuwin, '\263', '\263', '\304', '\304', '\332',
|
||||
'\277', '\300', '\331');
|
||||
wborder(menuwin, ACS_VLINE, ACS_VLINE, ACS_HLINE, ACS_HLINE,
|
||||
ACS_ULCORNER, ACS_URCORNER, ACS_LLCORNER, ACS_LRCORNER);
|
||||
|
||||
wattrset(menuwin, COLOR_PAIR(4) | A_BOLD);
|
||||
mvwprintw(menuwin, 0, (menu_width - 17) / 2, " Payload Chooser ");
|
||||
|
|
Loading…
Reference in New Issue