summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/Framebuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Private/KernelKit/Framebuffer.hpp')
-rw-r--r--Private/KernelKit/Framebuffer.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/KernelKit/Framebuffer.hpp b/Private/KernelKit/Framebuffer.hpp
index 397f62d0..d399f382 100644
--- a/Private/KernelKit/Framebuffer.hpp
+++ b/Private/KernelKit/Framebuffer.hpp
@@ -10,7 +10,7 @@
#include <NewKit/Defines.hpp>
#include <NewKit/Ref.hpp>
-namespace HCore {
+namespace NewOS {
enum class FramebufferColorKind : UChar {
RGB32,
RGB16,
@@ -75,12 +75,12 @@ const UInt32 kRgbGreen = 0x0000FF00;
const UInt32 kRgbBlue = 0x00FF0000;
const UInt32 kRgbBlack = 0x00000000;
const UInt32 kRgbWhite = 0xFFFFFFFF;
-} // namespace HCore
+} // namespace NewOS
/***********************************************************************************/
/// Color macros.
/***********************************************************************************/
-#define RGB(R, G, B) (HCore::UInt32)(0x##R##G##B)
+#define RGB(R, G, B) (NewOS::UInt32)(0x##R##G##B)
#endif /* ifndef __INC_FB_HPP__ */