Use beta symbol as fallback of `ß`

This commit is contained in:
Alex Voinea 2023-09-30 16:55:38 +02:00
parent b45a5842ca
commit c2c01a9a86
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
{0x20, {0x12, 0x78, 0x70, 0xF0, }, 's'}, // index=0xB0, utf8='ś'
{0x20, {0x52, 0x78, 0x70, 0xF0, }, 's'}, // index=0xB1, utf8='š'
{0x10, {0x07, 0x87, 0x0F, 0x24, }, 's'}, // index=0xB2, utf8='ș'
{0x60, {0x69, 0x9A, 0x98, 0x8B, }, 's'}, // index=0xB3, utf8='ß'
{0x60, {0x69, 0x9A, 0x98, 0x8B, }, '\xe2'}, // index=0xB3, utf8='ß'
{0x23, {0x04, 0xE4, 0x44, 0x30, }, 't'}, // index=0xB4, utf8='ť'
{0x10, {0x4E, 0x44, 0x43, 0x24, }, 't'}, // index=0xB5, utf8='ț'
{0x01, {0xF2, 0x22, 0x20, 0x24, }, 'T'}, // index=0xB6, utf8='Ț'

View File

@ -62,7 +62,7 @@ FONT_TABLE = [
CustomCharacter('ś', 108, 's'),
CustomCharacter('š', 109, 's'),
CustomCharacter('ș', 110, 's'),
CustomCharacter('ß', 111, 's'),
CustomCharacter('ß', 111, '\\xe2'),
CustomCharacter('ť', 116, 't'),
CustomCharacter('ț', 117, 't'),
CustomCharacter('Ț', 119, 'T'),