Fix special text symbols
Two of the symbols were accidentally reversed.
This commit is contained in:
parent
4bda38cc9f
commit
ed6d66acd9
4
Text.py
4
Text.py
|
@ -625,8 +625,8 @@ char_map = {' ': 0xFF,
|
|||
'.': 0xCD,
|
||||
'~': 0xCE,
|
||||
'~': 0xCE,
|
||||
'>': [0x6A], # Links name (only works if compressed)
|
||||
'@': [0x00, 0xD2, 0x00, 0xD3], # Link's face
|
||||
'@': [0x6A], # Links name (only works if compressed)
|
||||
'>': [0x00, 0xD2, 0x00, 0xD3], # Link's face
|
||||
"'": 0xD8,
|
||||
'’': 0xD8,
|
||||
'%': 0xDD, # Hylian Bird
|
||||
|
|
Loading…
Reference in New Issue