[Scummvm-git-logs] scummvm master -> 33b47106dde6bfdc0ae73dc3c11e5a05f1359c0c
antoniou79
a.antoniou79 at gmail.com
Mon Jan 20 22:14:08 UTC 2020
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:
33b47106dd BLADERUNNER: RESTOREDCONTENT: Leary's line about Zuben for ESP and ITA
Commit: 33b47106dde6bfdc0ae73dc3c11e5a05f1359c0c
https://github.com/scummvm/scummvm/commit/33b47106dde6bfdc0ae73dc3c11e5a05f1359c0c
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2020-01-21T00:13:37+02:00
Commit Message:
BLADERUNNER: RESTOREDCONTENT: Leary's line about Zuben for ESP and ITA
It's redundant for ENG, FRA, DEU but it's the second half of the sentence for ESP, ITA
Changed paths:
engines/bladerunner/script/scene/rc01.cpp
diff --git a/engines/bladerunner/script/scene/rc01.cpp b/engines/bladerunner/script/scene/rc01.cpp
index 1c5ba9a..bfbb7f0 100644
--- a/engines/bladerunner/script/scene/rc01.cpp
+++ b/engines/bladerunner/script/scene/rc01.cpp
@@ -337,6 +337,14 @@ bool SceneScriptRC01::ClickedOnActor(int actorId) {
if (Actor_Clue_Query(kActorOfficerLeary, kClueCrowdInterviewA) && !Actor_Clue_Query(kActorMcCoy, kClueCrowdInterviewA)) {
Actor_Face_Object(kActorOfficerLeary, "70_1", true);
Actor_Says(kActorOfficerLeary, 100, 15);
+ if (_vm->_cutContent
+ && (_vm->_language == Common::ES_ESP
+ || _vm->_language == Common::IT_ITA)
+ ) {
+ // this is the second half of the sentence about Lucy hanging around with Zuben ("a fat guy")
+ // in ENG, DEU and FRA it is redundant, but it's needed in ESP and ITA
+ Actor_Says(kActorOfficerLeary, 110, 15);
+ }
Actor_Face_Actor(kActorOfficerLeary, kActorMcCoy, true);
Actor_Clue_Acquire(kActorMcCoy, kClueCrowdInterviewA, true, kActorOfficerLeary);
Game_Flag_Reset(kFlagRC01McCoyAndOfficerLearyTalking);
More information about the Scummvm-git-logs
mailing list