Update error colors

This commit is contained in:
EnderIce2 2024-03-02 01:42:23 +02:00
parent 7ed89bcb4c
commit 8caed0c35c
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ namespace Driver
{ {
if (Drivers.empty()) if (Drivers.empty())
{ {
KPrint("\eFF0000No drivers to load"); KPrint("\eE85230No drivers to load");
return; return;
} }

View File

@ -59,7 +59,7 @@ EXTERNC NIF void KernelVFS()
vfs::USTAR *ustar = new vfs::USTAR; vfs::USTAR *ustar = new vfs::USTAR;
if (!ustar->TestArchive(initrdAddress)) if (!ustar->TestArchive(initrdAddress))
{ {
KPrint("\eFF0000USTAR archive is invalid!"); KPrint("\eE85230USTAR archive is invalid!");
delete ustar; delete ustar;
} }
else else