LibVT: Shave down VT::Attribute from 8 bytes to 3 bytes

We have one of these per character in the terminal buffers, so it's a
decent haircut. :^)
This commit is contained in:
Andreas Kling 2019-08-13 12:59:58 +02:00
commit ca9592d56f
Notes: sideshowbarker 2024-07-19 12:42:21 +09:00
2 changed files with 4 additions and 7 deletions

View file

@ -3,9 +3,6 @@
namespace VT {
u8 Attribute::default_foreground_color = 7;
u8 Attribute::default_background_color = 0;
Terminal::Terminal(TerminalClient& client)
: m_client(client)
{