[Scummvm-git-logs] scummvm master -> 0bc1586bcc0d632e46266c243f672d6f88783b77
antoniou79
a.antoniou79 at gmail.com
Sat Dec 19 21:13:13 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:
0bc1586bcc BLADERUNNER: RESTOREDCONTENT: Quote about fake McCoy on photo
Commit: 0bc1586bcc0d632e46266c243f672d6f88783b77
https://github.com/scummvm/scummvm/commit/0bc1586bcc0d632e46266c243f672d6f88783b77
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2020-12-19T23:10:36+02:00
Commit Message:
BLADERUNNER: RESTOREDCONTENT: Quote about fake McCoy on photo
Changed paths:
engines/bladerunner/script/esper_script.cpp
engines/bladerunner/script/kia_script.cpp
diff --git a/engines/bladerunner/script/esper_script.cpp b/engines/bladerunner/script/esper_script.cpp
index 9c48c1c3e0..2461c6a65c 100644
--- a/engines/bladerunner/script/esper_script.cpp
+++ b/engines/bladerunner/script/esper_script.cpp
@@ -404,7 +404,11 @@ bool ESPERScript::SCRIPT_ESPER_DLL_Special_Region_Selected(int photo, int region
break;
case 23:
- Actor_Voice_Over(4240, kActorVoiceOver);
+ if (_vm->_cutContent && Actor_Clue_Query(kActorMcCoy, kClueMoonbusReflection)) {
+ Actor_Voice_Over(4250, kActorVoiceOver);
+ } else {
+ Actor_Voice_Over(4240, kActorVoiceOver);
+ }
if (!Actor_Clue_Query(kActorMcCoy, kClueMcCoyAtMoonbus)) {
Actor_Says(kActorMcCoy, 6945, 3);
Sound_Play(kSfxBR034_1A, 50, 0, 0, 50);
diff --git a/engines/bladerunner/script/kia_script.cpp b/engines/bladerunner/script/kia_script.cpp
index 7155502ce4..18f228408a 100644
--- a/engines/bladerunner/script/kia_script.cpp
+++ b/engines/bladerunner/script/kia_script.cpp
@@ -1014,7 +1014,17 @@ void KIAScript::SCRIPT_KIA_DLL_Play_Clue_Asset_Script(int notUsed, int clueId) {
break;
case kClueMcCoyAtMoonbus:
KIA_Play_Photograph(36);
- KIA_Play_Actor_Dialogue(kActorVoiceOver, 4240);
+ if (_vm->_cutContent) {
+ if (Actor_Clue_Query(kActorMcCoy, kClueMoonbusReflection)) {
+ KIA_Play_Actor_Dialogue(kActorVoiceOver, 4250);
+ } else {
+ KIA_Play_Actor_Dialogue(kActorVoiceOver, 4010);
+ KIA_Play_Actor_Dialogue(kActorVoiceOver, 4020);
+ }
+ } else {
+ // original re-uses the "That can't be me" from the ESPER
+ KIA_Play_Actor_Dialogue(kActorVoiceOver, 4240);
+ }
break;
case kClueClovisAtMoonbus:
KIA_Play_Photograph(37);
More information about the Scummvm-git-logs
mailing list