summaryrefslogtreecommitdiffhomepage
path: root/Kernel
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Sources/AppMain.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/Kernel/Sources/AppMain.cxx b/Kernel/Sources/AppMain.cxx
index e9da459b..9ca224c3 100644
--- a/Kernel/Sources/AppMain.cxx
+++ b/Kernel/Sources/AppMain.cxx
@@ -184,7 +184,7 @@ namespace NewOS::Detail
/// @return void no return value.
STATIC NewOS::Void AppSystemLoader(NewOS::Void)
{
- NewOS::PEFLoader coreGraphicsShLib("/System/CoreGraphics");
+ NewOS::PEFLoader coreGraphicsShLib("/System/WindowServer");
if (!coreGraphicsShLib.IsLoaded())
{
@@ -221,8 +221,5 @@ EXTERN_C NewOS::Void AppMain(NewOS::Void)
auto cLoaderName = "SystemLoader";
NewOS::execute_from_image(NewOS::Detail::AppSystemLoader, cLoaderName);
- while (NewOS::ProcessScheduler::Shared().Leak().Run() > 0)
- {
- NewOS::kcout << "New OS: Shuting down...\r";
- }
+ while (NewOS::ProcessScheduler::Shared().Leak().Run() > 0) {}
}