mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
Make Console::m_rows/m_columns const for now.
This commit is contained in:
parent
e38f40a83c
commit
09fc9c0698
Notes:
sideshowbarker
2024-07-19 18:45:47 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/09fc9c0698e
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…
Reference in a new issue