From 956bc514ff1860ca6122000a0ffe75427e2fde39 Mon Sep 17 00:00:00 2001 From: aqua Date: Thu, 3 Nov 2022 15:56:05 +0200 Subject: vga: fix text mode cursor outb parameters are (value, port) and not (port, value) --- lib/stdio/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/stdio/printf.c') diff --git a/lib/stdio/printf.c b/lib/stdio/printf.c index 25cce40..ae4d5b1 100644 --- a/lib/stdio/printf.c +++ b/lib/stdio/printf.c @@ -65,6 +65,6 @@ printf(const char *restrict format, ...) } va_end(params); - // vga_update_cursor(); + vga_update_cursor(); return written; } -- cgit v1.2.1