mirror of
https://github.com/whscullin/apple1js.git
synced 2025-02-16 16:31:18 +00:00
Merge pull request #47 from whscullin/whscullin/unprintable
Ignore unprintable characters
This commit is contained in:
commit
18f2fc7acf
@ -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