diff options
author | Martin Kiewitz | 2010-10-15 20:32:46 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-10-15 20:32:46 +0000 |
commit | effe45e5814ba6ec764df1a31263d377aec75e6e (patch) | |
tree | 8fea8da7846072e85e96a7493024654c8eb28f70 /engines/toon | |
parent | 9744167adc35ea945eaef333e76696b1d6feaeb7 (diff) | |
download | scummvm-rg350-effe45e5814ba6ec764df1a31263d377aec75e6e.tar.gz scummvm-rg350-effe45e5814ba6ec764df1a31263d377aec75e6e.tar.bz2 scummvm-rg350-effe45e5814ba6ec764df1a31263d377aec75e6e.zip |
TOON: fix Ä umlaut and " char in german version of toonstruck
svn-id: r53513
Diffstat (limited to 'engines/toon')
-rw-r--r-- | engines/toon/font.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/toon/font.cpp b/engines/toon/font.cpp index 62eb0beac0..f785dc6600 100644 --- a/engines/toon/font.cpp +++ b/engines/toon/font.cpp @@ -37,11 +37,11 @@ FontRenderer::FontRenderer(ToonEngine *vm) : _vm(vm) { // mapping extended characters required for foreign versions to font (animation) static const byte map_textToFont[0x80] = { - '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0x8x + '?', '?', '?', '?', 0x03, '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0x8x '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0x9x - '?', 0x09, '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xAx - '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', 0x0a, // 0xBx - '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xCx + '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xAx + '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xBx + '?', '?', '?', '?', 0x1d, '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0xCx '?', 0x0b, '?', '?', '?', '?', 0x1e, '?', '?', '?', '?', '?', 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 |