mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:17:44 +00:00
Make Console::m_rows/m_columns const for now.
This commit is contained in:
parent
e38f40a83c
commit
09fc9c0698
1 changed files with 2 additions and 2 deletions
|
@ -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 };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue