1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix premature return during VGA text buffer emergency reset.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-04-22 15:30:01 +02:00
parent 01b8acbc90
commit bcf72f71e4

View file

@ -204,7 +204,6 @@ bool VGATextBuffer::EmergencyRecoup()
void VGATextBuffer::EmergencyReset()
{
return;
Fill(TextPos{0, 0}, TextPos{width-1, height-1}, TextChar{0, 0}, 0);
SetCursorPos(TextPos{0, 0});
}