From dd78c1cc7dc50baf07daa672d5cb6dcdced496fe Mon Sep 17 00:00:00 2001 From: Jarkko Toivanen Date: Thu, 15 Jun 2023 03:09:41 +0300 Subject: [PATCH] Fix: UNavailable videoinfo not on new line --- kernel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel.c b/kernel.c index d79e18f..342132a 100644 --- a/kernel.c +++ b/kernel.c @@ -91,8 +91,8 @@ void kmain (unsigned int mbootmagick, multiboot_info_t* mbootinfo) { *vmem = 0xff00ff; } else { - vga_write_color("Info not available", VGA_COLOR_BLACK, VGA_COLOR_RED); - serial_write_string("Info not available"); + vga_write_color("\nVideo info not available", VGA_COLOR_BLACK, VGA_COLOR_RED); + serial_write_string("\nVideo info not available"); return; } vga_write_line("\nExecution finished, halting...");