diff options
author | Willem Jan Palenstijn | 2012-03-03 00:46:17 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-03-03 00:46:17 +0100 |
commit | 101ec2b885aade21216c1bba8488711b30d192eb (patch) | |
tree | fc876f546658e1fda68ec20f4f79352f5191571f /engines/touche | |
parent | b918149e6bd66b7e2a1225f2a411966840bad4b6 (diff) | |
download | scummvm-rg350-101ec2b885aade21216c1bba8488711b30d192eb.tar.gz scummvm-rg350-101ec2b885aade21216c1bba8488711b30d192eb.tar.bz2 scummvm-rg350-101ec2b885aade21216c1bba8488711b30d192eb.zip |
TOUCHE: Remap one more Spanish character
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/staticres.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/touche/staticres.cpp b/engines/touche/staticres.cpp index f35845e881..c18a947358 100644 --- a/engines/touche/staticres.cpp +++ b/engines/touche/staticres.cpp @@ -888,7 +888,9 @@ const uint8 Graphics::_freGerFontData[] = { // spanish charset differs from original executable, see tracker item #2040311. // We remap missing accented upper case letters from CP850 to their unaccented -// ASCII variants. Specifically, 0xB5 -> A, 0xD6 -> I, 0xE0 -> O, 0xE9 -> U. +// ASCII variants. Specifically, 0xB5 -> A, 0xD6 -> I, 0xE0 -> O, 0xE9 -> U, +// 0xEF -> ' +// FIXME: Shouldn't we just add these to the font data? const uint16 Graphics::_spaFontOffs[] = { 0x0000, 0x0007, 0x0024, 0x0043, 0x0072, 0x00AD, 0x00E0, 0x0113, 0x0124, 0x0141, 0x015E, 0x0191, 0x01C4, 0x01E3, 0x01F8, 0x0215, 0x0232, 0x0269, 0x0286, 0x02BD, @@ -910,7 +912,7 @@ const uint16 Graphics::_spaFontOffs[] = { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0703, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0627, 0x1954, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, - 0x0000, 0x097D + 0x0000, 0x097D, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0113 }; const int Graphics::_spaFontSize = ARRAYSIZE(Graphics::_spaFontOffs); |