Ignore unprintable characters

This commit is contained in:
Will Scullin
2023-12-18 14:13:06 -08:00
parent e860001ea9
commit 851f19ddfb
+1 -1
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) {