From a891bb34f347d10f183a76f53d296b0187987e10 Mon Sep 17 00:00:00 2001 From: Jarod42 Date: Sun, 24 Mar 2024 11:17:22 +0100 Subject: [PATCH] =?UTF-8?q?Display=20"=C3=99"=20as=20"=C3=B9"=20instead=20?= =?UTF-8?q?of=20"=3F"=20for=20Codepage=20437=20(used=20with=20French=20wor?= =?UTF-8?q?d=20"O=C3=99").?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/video/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/font.cpp b/src/video/font.cpp index 74b3a08219..2507f095ef 100644 --- a/src/video/font.cpp +++ b/src/video/font.cpp @@ -212,7 +212,7 @@ 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, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0xe1, // 0xd0 + 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 };