Kernel: Remove static variables from virtual tty

This commit is contained in:
2025-05-11 03:22:58 +03:00
parent 8e0a56b49a
commit a7bd4acd46
2 changed files with 9 additions and 8 deletions

View File

@@ -94,6 +94,10 @@ namespace Kernel
uint32_t m_column { 0 };
Cell* m_buffer { nullptr };
bool m_last_cursor_shown { false };
uint32_t m_last_cursor_row { static_cast<uint32_t>(-1) };
uint32_t m_last_cursor_column { static_cast<uint32_t>(-1) };
const Palette& m_palette;
TerminalDriver::Color m_foreground;