Kernel: Don't store copy of palette in virtual TTY

It can be just queried from the terminal driver
This commit is contained in:
2026-08-19 21:32:36 +03:00
parent bf0bd19289
commit 36b34b0df0
3 changed files with 16 additions and 16 deletions
@@ -96,8 +96,6 @@ namespace Kernel
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;
TerminalDriver::Color m_background;
bool m_colors_inverted { false };