Ignore unprintable characters

This commit is contained in:
Will Scullin 2023-12-18 14:13:06 -08:00
parent e860001ea9
commit 851f19ddfb
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ export class TextPage {
}
this._col = 0;
this._row++;
} else {
} else if (val >= 0x20) {
this._buffer[this._row][this._col] = val;
this._col++;
if (this._col > 39) {