Fix kernel console rendering U+007F.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-12-27 21:37:10 +01:00
parent 3e068bc88f
commit 8fabfc5f7b
1 changed files with 1 additions and 0 deletions

View File

@ -249,6 +249,7 @@ void TextTerminal::PutChar(TextBuffer* textbuf, char c)
case '\b': Backspace(textbuf); return;
case '\t': Tab(textbuf); return;
case '\e': AnsiReset(); return;
case 127: return;
default: break;
}
}