diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-07-31 11:38:59 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-07-31 11:38:59 +0000 |
commit | 131c0070a3b224e8ec2c817444f1ae4cf2419193 (patch) | |
tree | 5e787632bf0e783ba63b4b5dc4dc6af7801a3665 /payloads/libpayload/curses/keyboard.c | |
parent | e3f39b50cf4d6a5b7565bdb3eb173678de641b3d (diff) | |
download | coreboot-131c0070a3b224e8ec2c817444f1ae4cf2419193.tar.xz |
* drop duplicate prototype for lib_get_sysinfo()
* fix delay handling in tiny curses keyboard driver
* fix off by one error in video driver
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4473 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/curses/keyboard.c')
-rw-r--r-- | payloads/libpayload/curses/keyboard.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/payloads/libpayload/curses/keyboard.c b/payloads/libpayload/curses/keyboard.c index 4370b280f1..92a96f8696 100644 --- a/payloads/libpayload/curses/keyboard.c +++ b/payloads/libpayload/curses/keyboard.c @@ -179,7 +179,7 @@ static int curses_getchar(int delay) break; if (delay > 0) { - mdelay(100); + mdelay(1); delay--; } @@ -195,15 +195,17 @@ int wgetch(WINDOW *win) { int delay = -1; - if (_halfdelay || win->_delay) - delay = win->_delay ? 0 : _halfdelay; + if (_halfdelay) + delay = _halfdelay; + else + delay = win->_delay; return curses_getchar(delay); } int nodelay(WINDOW *win, NCURSES_BOOL flag) { - win->_delay = flag ? 1 : 0; + win->_delay = flag ? 0 : -1; return 0; } |