From c8c08e7b9035eceab2d53ddc36c88e9f49268079 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Thu, 22 Dec 2011 12:56:29 +0100 Subject: [PATCH] Moved the make-color-red code into DoWelcome in kernel.cpp. --- sortix/kernel.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sortix/kernel.cpp b/sortix/kernel.cpp index 2a2e7cc4..0ef97d24 100644 --- a/sortix/kernel.cpp +++ b/sortix/kernel.cpp @@ -110,6 +110,7 @@ namespace Sortix void DoMaxsiLogo() { + Log::Print("\e[37;41m\e[2J"); // Make the background color red. Log::Print(" _ \n"); Log::Print(" / \\ \n"); Log::Print(" /\\ /\\ / \\ \n"); @@ -178,9 +179,6 @@ namespace Sortix // Initialize the kernel log. Log::Init(logcallback, logpointer); - // Just a test to see if the color system works! Make the BG red! - Log::Print("\e[37;41m\e[2J"); - // Display the boot welcome screen. DoWelcome();