aboutsummaryrefslogtreecommitdiff
path: root/engines/touche/graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/touche/graphics.cpp')
-rw-r--r--engines/touche/graphics.cpp9
1 files changed, 3 insertions, 6 deletions
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;