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
1 changed files with 0 additions and 1 deletions

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});
}