mirror of
https://github.com/whscullin/apple1js.git
synced 2025-01-17 17:30:38 +00:00
Ignore unprintable characters
This commit is contained in:
parent
e860001ea9
commit
851f19ddfb
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user