Add missing newline to A2 alphabet table for V3
The V3 A2 table needs newline (ZSCII 13) at code 7, matching viola's implementation. The previous fix only removed the erroneous '<' but didn't add the newline, leaving the table at 24 chars instead of 25.
This commit is contained in:
parent
9116777603
commit
8d749fbb7e
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ class ZCharTranslator:
|
||||||
DEFAULT_A0 = [ord(x) for x in "abcdefghijklmnopqrstuvwxyz"]
|
DEFAULT_A0 = [ord(x) for x in "abcdefghijklmnopqrstuvwxyz"]
|
||||||
DEFAULT_A1 = [ord(x) for x in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]
|
DEFAULT_A1 = [ord(x) for x in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]
|
||||||
# A2 also has 0x6 as special char, so they start at 0x7.
|
# A2 also has 0x6 as special char, so they start at 0x7.
|
||||||
DEFAULT_A2 = [ord(x) for x in "0123456789.,!?_#'\"/\\-:()"]
|
DEFAULT_A2 = [ord(x) for x in "\n0123456789.,!?_#'\"/\\-:()"]
|
||||||
DEFAULT_A2_V5 = [ord(x) for x in "\n0123456789.,!?_#'\"/\\-:()"]
|
DEFAULT_A2_V5 = [ord(x) for x in "\n0123456789.,!?_#'\"/\\-:()"]
|
||||||
|
|
||||||
ALPHA = (DEFAULT_A0, DEFAULT_A1, DEFAULT_A2)
|
ALPHA = (DEFAULT_A0, DEFAULT_A1, DEFAULT_A2)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue