aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_map.cpp')
-rw-r--r--engines/sherlock/scalpel/scalpel_map.cpp7
1 files changed, 6 insertions, 1 deletions
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";
}
}