diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-25 05:01:27 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-25 05:02:32 +0100 |
commit | 0db72786cf8b3e70798ec5d2cdfd3bacd5a032d4 (patch) | |
tree | 317cadd37d9197a382bc2a6323f451cfde57ae3c /Kernel/init.cpp | |
parent | c6b7b92625fc762ab300aeef78de7090550000cb (diff) | |
download | serenity-0db72786cf8b3e70798ec5d2cdfd3bacd5a032d4.zip |
Snazz up the windows with some title bar gradients. :^)
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r-- | Kernel/init.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 4df345664e..0e1f835d8f 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -138,6 +138,10 @@ void init() gdt_init(); idt_init(); +#ifndef NO_FPU + asm volatile("fninit"); +#endif + VFS::initialize_globals(); vfs = new VFS; |