From c2981e460705f434e062756f2f901a9890104cb7 Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Tue, 30 Aug 2005 08:04:26 +0000 Subject: [PATCH] Add serial_cursor_restore() and serial_cursor_save() --- second/console.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/second/console.c b/second/console.c index 5013e91..52d2f9f 100644 --- a/second/console.c +++ b/second/console.c @@ -92,6 +92,7 @@ void console_cursor_restore(void) { vga_cursor_restore(); } + serial_cursor_restore(); } void console_cursor_save(void) @@ -100,5 +101,6 @@ void console_cursor_save(void) { vga_cursor_save(); } + serial_cursor_save(); } #endif