diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-14 13:35:41 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-14 13:35:41 +0100 |
commit | 6055ef45a39b62bffa5f4c194e5d62a177c3b9df (patch) | |
tree | 69125ae1ffd15b4991cd4b7901b44e6a05d26959 /Source/Kernel/Shell | |
parent | 4d5c1fcf9b1616db662a5cab0cec5ac878ce5175 (diff) | |
download | Melon-6055ef45a39b62bffa5f4c194e5d62a177c3b9df.tar.gz Melon-6055ef45a39b62bffa5f4c194e5d62a177c3b9df.zip |
Added screenshots and a grub entry for the GOL simulator.
Diffstat (limited to 'Source/Kernel/Shell')
-rw-r--r-- | Source/Kernel/Shell/KernelShell.class.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Kernel/Shell/KernelShell.class.cpp b/Source/Kernel/Shell/KernelShell.class.cpp index b6898ba..f3cd340 100644 --- a/Source/Kernel/Shell/KernelShell.class.cpp +++ b/Source/Kernel/Shell/KernelShell.class.cpp @@ -31,7 +31,7 @@ KernelShell::KernelShell(DirectoryNode* cwd, VirtualTerminal* vt) { } KernelShell::KernelShell(DirectoryNode* cwd) { - ScrollableVT* vt = new ScrollableVT(15, 76, 200, SHELL_FGCOLOR, SHELL_BGCOLOR); + ScrollableVT* vt = new ScrollableVT(15, 76, 200, KVT_FGCOLOR, KVT_BGCOLOR); vt->map(9); setup(cwd, vt); } @@ -65,11 +65,11 @@ u32int KernelShell::run() { }; while (1) { - m_vt->setColor(SHELL_LIGHTCOLOR); + m_vt->setColor(KVT_LIGHTCOLOR); *m_vt << VFS::path(m_cwd) << " # "; - m_vt->setColor(SHELL_ENTRYCOLOR); + m_vt->setColor(KVT_ENTRYCOLOR); Vector<String> tokens = m_vt->readLine().split(" "); - m_vt->setColor(SHELL_FGCOLOR); + m_vt->setColor(KVT_FGCOLOR); if (tokens[0] == "help") { *m_vt << " - Command list for integrated kernel shell:\n"; *m_vt << " - help shows this help screen\n"; |