Fix sprite character mapping

This commit is contained in:
horsemankukka 2020-08-24 18:39:18 +03:00 committed by GitHub
parent 88f5982d32
commit 89fc74a879
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,13 +52,14 @@ export const FONT_LOOKUP: { [letter: string]: [number, number] } = {
"8": [1, 8],
"9": [1, 9],
[UTF8_ELLIPSIS]: [1, 10],
_: [1, 11],
".": [1, 11],
":": [1, 12],
"(": [1, 13],
")": [1, 14],
"-": [1, 15],
"'": [1, 16],
"!": [1, 17],
_: [1, 18],
"+": [1, 19],
"\\": [1, 20],
"/": [1, 21],
@ -67,7 +68,7 @@ export const FONT_LOOKUP: { [letter: string]: [number, number] } = {
"^": [1, 24],
"&": [1, 25],
"%": [1, 26],
".": [1, 27],
",": [1, 27],
"=": [1, 28],
$: [1, 29],
"#": [1, 30],