summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/Framebuffer.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-24 14:31:57 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-24 14:31:57 +0100
commit2a1e69c1fe299d6e2f03cb5ebc78e27de87d0662 (patch)
tree6328a1117557ada5c9577b4c90664dfbf59a2dd2 /Private/KernelKit/Framebuffer.hpp
parentb842e2d8e09189d527006ca5b3dec58128afe953 (diff)
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 <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/KernelKit/Framebuffer.hpp')
-rw-r--r--Private/KernelKit/Framebuffer.hpp2
1 files changed, 1 insertions, 1 deletions
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__ */