diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-10 16:25:59 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-10 16:26:18 +0100 |
commit | 2ac5e14c08a4d855f53e7b7c519e0864ffe469bf (patch) | |
tree | ceb5c944c9936eca77d41cb3babe3d99a7f26840 /Kernel/init.cpp | |
parent | c653bb09b3cbc4fdbb595501c4adbb161607a1fe (diff) | |
download | serenity-2ac5e14c08a4d855f53e7b7c519e0864ffe469bf.zip |
Merge VGA into VirtualConsole.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r-- | Kernel/init.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp index ffcbc3d03e..641d5cdec7 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -1,5 +1,4 @@ #include "types.h" -#include "VGA.h" #include "kmalloc.h" #include "i386.h" #include "i8253.h" @@ -267,7 +266,6 @@ void init() #endif kmalloc_init(); - vga_init(); auto console = make<Console>(); |