summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/KernelMain.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-24 10:37:20 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-24 10:37:20 +0100
commitb842e2d8e09189d527006ca5b3dec58128afe953 (patch)
treea410656e642c4ae4472c054b7c69fef98d2c5433 /Private/Source/KernelMain.cxx
parenteaf9ec361fa0b9a56057a7143d15a0ee31258f0d (diff)
Kernel: :boom: Fixing stuff due to misguided efforts.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/Source/KernelMain.cxx')
-rw-r--r--Private/Source/KernelMain.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/Source/KernelMain.cxx b/Private/Source/KernelMain.cxx
index 6050c95f..e1fba478 100644
--- a/Private/Source/KernelMain.cxx
+++ b/Private/Source/KernelMain.cxx
@@ -35,7 +35,7 @@ EXTERN_C void RuntimeMain(
HCore::IFilesystemManager::Mount(new HCore::NewFilesystemManager());
// Open file from first hard-drive.
- HCore::PEFLoader img("A:/System/HCoreShell.exe");
+ HCore::PEFLoader img("A:/System/HCoreServer.exe");
/// Run the shell.
if (!HCore::Utils::execute_from_image(img)) {
@@ -43,6 +43,6 @@ EXTERN_C void RuntimeMain(
}
} else {
HCore::kcout << "HCoreKrnl: Setup is starting...\n";
- HCore::kcout << "HCoreKrnl: Mounting drive A:...\n";
+ HCore::kcout << "HCoreKrnl: Mounting drive A: ...\n";
}
}