Moved the make-color-red code into DoWelcome in kernel.cpp.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-12-22 12:56:29 +01:00
parent 567786d26b
commit c8c08e7b90
1 changed files with 1 additions and 3 deletions

View File

@ -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();