mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 19:59:17 +00:00
TTY: Reset VGA start row when setting graphical TTY
This was causing the screen (on a real machine) to be split in half.
This commit is contained in:
committed by
Andreas Kling
parent
94ed183774
commit
35ba4bf005
@@ -65,6 +65,14 @@ void VirtualConsole::initialize()
|
||||
s_active_console = -1;
|
||||
}
|
||||
|
||||
void VirtualConsole::set_graphical(bool graphical)
|
||||
{
|
||||
if (graphical)
|
||||
set_vga_start_row(0);
|
||||
|
||||
m_graphical = graphical;
|
||||
}
|
||||
|
||||
VirtualConsole::VirtualConsole(unsigned index, InitialContents initial_contents)
|
||||
: TTY(4, index)
|
||||
, m_index(index)
|
||||
|
||||
Reference in New Issue
Block a user