diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-11 09:31:23 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-11 09:31:23 +0100 |
commit | 7292b995d4f7bfea699e44ed335d7cc1616c1132 (patch) | |
tree | 8d70a0750fb5613aeba002038e7ae676fe6a271a /Source/Kernel/Core | |
parent | eb5f08c76b17ac6e15d6b763a7f45816cb85c570 (diff) | |
download | Melon-7292b995d4f7bfea699e44ed335d7cc1616c1132.tar.gz Melon-7292b995d4f7bfea699e44ed335d7cc1616c1132.zip |
VESA works !
Diffstat (limited to 'Source/Kernel/Core')
-rw-r--r-- | Source/Kernel/Core/kmain.wtf.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/Kernel/Core/kmain.wtf.cpp b/Source/Kernel/Core/kmain.wtf.cpp index 2324857..a59149b 100644 --- a/Source/Kernel/Core/kmain.wtf.cpp +++ b/Source/Kernel/Core/kmain.wtf.cpp @@ -94,7 +94,7 @@ void selectVideoMode(SimpleVT& v) { } //v.setCursorCol(40); //v << m.device->getName() << "\n"; - v << "\n"; + v << "\n"; } while (1) { @@ -135,7 +135,7 @@ void kmain(multiboot_info_t* mbd, u32int magic) { Disp::setText(vgaout); //Create a VT for logging what kernel does - SimpleVT *kvt = new ScrollableVT(25, 80, 10, KVT_FGCOLOR, KVT_BGCOLOR); + SimpleVT *kvt = new ScrollableVT(25, 80, 20, KVT_FGCOLOR, KVT_BGCOLOR); kvt->map(0, 0); *kvt << "Melon is loading..."; @@ -187,8 +187,6 @@ void kmain(multiboot_info_t* mbd, u32int magic) { Usr::load(); Log::log(KL_STATUS, "kmain : User list loaded"); - //PANIC("Good, this works !"); - Process* p = Process::run("/System/Applications/PaperWork.app", 0); if (p == 0) { PANIC("Could not launch PaperWork !"); |