Changeset 5e2fc8b in buchla-emu
- Timestamp:
-
05/27/2018 12:56:27 PM
(6 years ago)
- Author:
- alexheinrich <alex.heinrich@…>
- Branches:
- master
- Children:
- 72b5744
- Parents:
- 25c3737
- Message:
-
Fix ticket #16.
-
File:
-
Legend:
- Unmodified
- Added
- Removed
-
r25c3737
|
r5e2fc8b
|
|
134 | 134 | line[x] = ' '; |
135 | 135 | } |
| 136 | else if (line[x] == 0x7e) { |
| 137 | line[x] = (char) 0xbb; |
| 138 | } |
| 139 | else if (line[x] == 0x7f) { |
| 140 | line[x] = (char) 0xab; |
| 141 | } |
136 | 142 | } |
137 | 143 | |