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:
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 };