1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:57:47 +00:00

Make Console::m_rows/m_columns const for now.

This commit is contained in:
Andreas Kling 2018-10-21 23:48:50 +02:00
parent e38f40a83c
commit 09fc9c0698

View file

@ -15,8 +15,8 @@ public:
private: private:
void putChar(char); void putChar(char);
byte m_rows { 25 }; const byte m_rows { 25 };
byte m_columns { 80 }; const byte m_columns { 80 };
byte m_cursorRow { 0 }; byte m_cursorRow { 0 };
byte m_cursorColumn { 0 }; byte m_cursorColumn { 0 };