From 7a919dee8a7fcd26d87ef00d6f8134d3314b7db3 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Wed, 7 Oct 2015 12:40:33 +0200 Subject: SHERLOCK: SS: Spanish typo workaround on map Fix "Alamacen" typo into "Almacen" see bug #6931 --- engines/sherlock/scalpel/scalpel_map.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/sherlock/scalpel/scalpel_map.cpp b/engines/sherlock/scalpel/scalpel_map.cpp index 04ff7d0186..0924581e38 100644 --- a/engines/sherlock/scalpel/scalpel_map.cpp +++ b/engines/sherlock/scalpel/scalpel_map.cpp @@ -103,10 +103,15 @@ void ScalpelMap::loadData() { // WORKAROUND: Special fixes for faulty translations // Was obviously not done in the original interpreter if (_vm->getLanguage() == Common::ES_ESP) { + // Spanish version if (line == " Alley") { - // In the Spanish version the "Alley" location on the map was not translated, we do this now + // The "Alley" location was not translated, we do this now // see bug #6931 line = " Callejon"; + } else if (line == " Alamacen") { + // "Warehouse" location has a typo, we fix it + // see bug #6931 + line = " Almacen"; } } -- cgit v1.2.3