term: Nul should be ignored

This commit is contained in:
mintsuki 2021-08-29 16:16:32 +02:00
parent 12566c53b3
commit 0312020bd2

View File

@ -853,6 +853,7 @@ void term_putchar(uint8_t c) {
get_cursor_pos(&x, &y);
switch (c) {
case 0x00:
case 0x7f:
return;
case 0x9b: