From 09fc9c0698eb56ec8616c4f38fa23686f1f04d12 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 21 Oct 2018 23:48:50 +0200 Subject: [PATCH] Make Console::m_rows/m_columns const for now. --- Kernel/Console.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/Console.h b/Kernel/Console.h index 1eca381d2b..e6406289a4 100644 --- a/Kernel/Console.h +++ b/Kernel/Console.h @@ -15,8 +15,8 @@ public: private: void putChar(char); - byte m_rows { 25 }; - byte m_columns { 80 }; + const byte m_rows { 25 }; + const byte m_columns { 80 }; byte m_cursorRow { 0 }; byte m_cursorColumn { 0 };