From 0a37086d316a76d51831447ee64d2129ac7d39ee Mon Sep 17 00:00:00 2001 From: Gregory Montoir Date: Sun, 13 May 2007 02:08:53 +0000 Subject: french and german versions of Touche use the same charset data (confirmed by looking in both original executables) svn-id: r26819 --- engines/touche/graphics.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'engines/touche/graphics.cpp') diff --git a/engines/touche/graphics.cpp b/engines/touche/graphics.cpp index b995d6c702..32daa98cbe 100644 --- a/engines/touche/graphics.cpp +++ b/engines/touche/graphics.cpp @@ -31,12 +31,9 @@ void Graphics::setupFont(Common::Language language) { switch (language) { case Common::FR_FRA: case Common::DE_DEU: - // TODO: dump the charset data in the original german version executable. - // For now, just re-use the french charset data (it contains the "eszett" - // character) - _fontOffs = _freFontOffs; - _fontSize = _freFontSize; - _fontData = _freFontData; + _fontOffs = _freGerFontOffs; + _fontSize = _freGerFontSize; + _fontData = _freGerFontData; break; case Common::ES_ESP: _fontOffs = _spaFontOffs; -- cgit v1.2.3