mirror of
https://github.com/whscullin/apple1js.git
synced 2025-01-02 12:30:05 +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._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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user