Skip to content

Commit

Permalink
petscii to screencode fix
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Jul 10, 2019
1 parent 9b102c5 commit 7af0356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyc64/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def writestr(self, txt):

@classmethod
def _petscii2screen(cls, petscii_code, inversevid=False):
if petscii_code <= 0x0f:
if petscii_code <= 0x1f:
code = petscii_code + 128
elif petscii_code <= 0x3f:
code = petscii_code
Expand Down

0 comments on commit 7af0356

Please sign in to comment.