From 2a1e69c1fe299d6e2f03cb5ebc78e27de87d0662 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 24 Feb 2024 14:31:57 +0100 Subject: HCR-11 && HCR-14: Work had been done to bring driver support to hcore's kernel. - AHCI is the de-facto kernel driver. - Drivers will be loaded as processes (except the builtin disk driver) - A GUI subsystem is in progress. Signed-off-by: Amlal El Mahrouss --- Private/KernelKit/Framebuffer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Private/KernelKit/Framebuffer.hpp') diff --git a/Private/KernelKit/Framebuffer.hpp b/Private/KernelKit/Framebuffer.hpp index 124cba4f..428e8cc6 100644 --- a/Private/KernelKit/Framebuffer.hpp +++ b/Private/KernelKit/Framebuffer.hpp @@ -68,6 +68,6 @@ const UInt32 kRgbWhite = 0x00FFFFFF; /// Framebuffer macros. /***********************************************************************************/ -#define RGB(R, G, B) (UInt32)(0x##R##G##B) +#define RGB(R, G, B) (HCore::UInt32)(0x##R##G##B) #endif /* ifndef __INC_FB_HPP__ */ -- cgit v1.2.3