Skip to content

Commit

Permalink
Display "Ê" as "ê" instead of "?" for Codepage 437 (used with French …
Browse files Browse the repository at this point in the history
…word "Êtes-vous").
  • Loading branch information
Jarod42 committed Apr 6, 2024
1 parent b48e434 commit f5467c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void GetDefaultTextColors(std::string &normalp, std::string &reversep)
static const unsigned char codepoint_to_cp437[] = {
0xff, 0xad, 0x9b, 0x9c, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xae, 0xaa, 0x00, 0x00, 0x00, // 0xa0
0xf8, 0xf1, 0xfd, 0x00, 0x00, 0xe6, 0x00, 0xfa, 0x00, 0x00, 0xa7, 0xaf, 0xac, 0xab, 0x00, 0xa8, // 0xb0
0x00, 0x00, 0x00, 0x00, 0x8e, 0x8f, 0x92, 0x80, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 0xc0
0x00, 0x00, 0x00, 0x00, 0x8e, 0x8f, 0x92, 0x80, 0x00, 0x90, 0x88/*Ê->ê*/, 0x00, 0x00, 0x00, 0x00, 0x00, // 0xc0
0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x97/*Ù->ù*/, 0x00, 0x00, 0x9a, 0x00, 0x00, 0xe1, // 0xd0
0x85, 0xa0, 0x83, 0x00, 0x84, 0x86, 0x91, 0x87, 0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b, // 0xe0
0x00, 0xa4, 0x95, 0xa2, 0x93, 0x00, 0x94, 0xf6, 0x00, 0x97, 0xa3, 0x96, 0x81, 0x00, 0x00, 0x98 // 0xf0
Expand Down

0 comments on commit f5467c6

Please sign in to comment.