1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

Kernel: Remove some unused code in Graphics::TextModeConsole

This commit is contained in:
Andreas Kling 2021-09-08 18:38:38 +02:00
parent 524ef5e475
commit 3e07b04564
2 changed files with 2 additions and 20 deletions

View file

@ -35,15 +35,11 @@ public:
private:
void clear_vga_row(u16 row);
void set_vga_start_row(u16 row);
explicit TextModeConsole(const VGACompatibleAdapter&);
mutable Spinlock m_vga_lock;
u16 m_vga_start_row { 0 };
u16 m_current_vga_start_address { 0 };
u8* m_current_vga_window { nullptr };
u16 m_cursor_x { 0 };
u16 m_cursor_y { 0 };
};
}