* 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
This commit is contained in:
committed by
Stefan Reinauer
parent
e3f39b50cf
commit
131c0070a3
@@ -66,7 +66,7 @@ static void video_console_fixup_cursor(void)
|
||||
if (cursory < 0)
|
||||
cursory = 0;
|
||||
|
||||
if (cursorx > VIDEO_COLS) {
|
||||
if (cursorx >= VIDEO_COLS) {
|
||||
cursorx = 0;
|
||||
cursory++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user