Merge pull request #47 from whscullin/whscullin/unprintable

Ignore unprintable characters
This commit is contained in:
Will Scullin 2023-12-18 14:28:48 -08:00 committed by GitHub
commit 18f2fc7acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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