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

Kernel: Disable VGA console in graphical mode

This commit is contained in:
Conrad Pankoff 2019-08-18 12:04:09 +10:00 committed by Andreas Kling
parent 36e3e7b75a
commit 879bc28e14
3 changed files with 28 additions and 3 deletions

View file

@ -20,6 +20,9 @@ public:
static void switch_to(unsigned);
static void initialize();
bool is_graphical() { return m_graphical; }
void set_graphical(bool graphical) { m_graphical = graphical; }
private:
// ^KeyboardClient
virtual void on_key_pressed(KeyboardDevice::Event) override;
@ -43,6 +46,7 @@ private:
u8* m_buffer;
unsigned m_index;
bool m_active { false };
bool m_graphical { false };
void scroll_up();
void set_cursor(unsigned row, unsigned column);