diff options
author | Arnaud Boutonné | 2010-12-28 21:19:31 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-12-28 21:19:31 +0000 |
commit | 4a94eba80a83cad1cb54f88fd97db473f7667bcb (patch) | |
tree | 705af5a6703b39295861fadd68aa8a5c7d6485cf /engines | |
parent | 7bc1ff065b4d63c233e7b5a286f7065ec349a973 (diff) | |
download | scummvm-rg350-4a94eba80a83cad1cb54f88fd97db473f7667bcb.tar.gz scummvm-rg350-4a94eba80a83cad1cb54f88fd97db473f7667bcb.tar.bz2 scummvm-rg350-4a94eba80a83cad1cb54f88fd97db473f7667bcb.zip |
TOON: Add mapping for upper 'ç' and for plenking, both used in french version
svn-id: r55057
Diffstat (limited to 'engines')
-rw-r--r-- | engines/toon/font.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/toon/font.cpp b/engines/toon/font.cpp index a8a1091d12..10d86977a3 100644 --- a/engines/toon/font.cpp +++ b/engines/toon/font.cpp @@ -43,8 +43,8 @@ static const byte map_textToFont[0x80] = { '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0x9x '?', 0x09, '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xAx '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', 0x0a, // 0xBx - '?', '?', '?', '?', 0x1d, '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xCx - '?', 0x0b, '?', '?', '?', '?', 0x1e, '?', '?', '?', '?', '?', 0x1f, '?', '?', 0x19, // 0xDx + '?', '?', '?', '?', 0x1d, '?', '?', 0x02, '?', '?', '?', '?', '?', '?', '?', '?', // 0xCx + '?', 0x0b, '?', '?', '?', '?', 0x1e, '?', '?', '?', '?', 0x20, 0x1f, '?', '?', 0x19, // 0xDx 0x0d, 0x04, 0x0e, '?', 0x1a, '?', '?', 0x18, 0x10, 0x0f, 0x12, 0x11, 0x09, 0x05, 0x14, 0x13, // 0xEx 0x23, 0x08, 0x23, 0x06, 0x15, 0x23, 0x1b, 0x23, 0x23, 0x16, 0x07, 0x17, 0x1c, 0x23, 0x23, 0x23 // 0xFx }; |