[Scummvm-cvs-logs] scummvm master -> 7a919dee8a7fcd26d87ef00d6f8134d3314b7db3

m-kiewitz m_kiewitz at users.sourceforge.net
Wed Oct 7 12:40:16 CEST 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7a919dee8a SHERLOCK: SS: Spanish typo workaround on map


Commit: 7a919dee8a7fcd26d87ef00d6f8134d3314b7db3
    https://github.com/scummvm/scummvm/commit/7a919dee8a7fcd26d87ef00d6f8134d3314b7db3
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2015-10-07T12:40:33+02:00

Commit Message:
SHERLOCK: SS: Spanish typo workaround on map

Fix "Alamacen" typo into "Almacen" see bug #6931

Changed paths:
    engines/sherlock/scalpel/scalpel_map.cpp



diff --git a/engines/sherlock/scalpel/scalpel_map.cpp b/engines/sherlock/scalpel/scalpel_map.cpp
index 04ff7d0..0924581 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";
 			}
 		}
 






More information about the Scummvm-git-logs mailing list