mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix kernel console rendering U+007F.
This commit is contained in:
parent
3e068bc88f
commit
8fabfc5f7b
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue