1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

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
parent 4fb02c78a9
commit ca9592d56f
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)
{