aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/vga
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/src/vga')
-rw-r--r--arch/x86_64/src/vga/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/src/vga/text.cpp b/arch/x86_64/src/vga/text.cpp
index 8f78ea9..8aa809f 100644
--- a/arch/x86_64/src/vga/text.cpp
+++ b/arch/x86_64/src/vga/text.cpp
@@ -17,8 +17,8 @@ namespace teachos::vga::x86_64::text
{
auto constinit buffer_offset = std::ptrdiff_t{};
- auto constexpr DEFAULT_TEXT_BUFFER_WIDTH = 80U;
- auto constexpr DEFAULT_TEXT_BUFFER_HEIGHT = 25U;
+ constexpr auto DEFAULT_TEXT_BUFFER_WIDTH = 80U;
+ constexpr auto DEFAULT_TEXT_BUFFER_HEIGHT = 25U;
auto write_char(char code_point, attribute attribute) -> void
{