aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/bladerunner/script/scene/nr01.cpp6
-rw-r--r--engines/bladerunner/script/scene/nr11.cpp2
-rw-r--r--engines/bladerunner/script/vk_script.cpp3
3 files changed, 7 insertions, 4 deletions
diff --git a/engines/bladerunner/script/scene/nr01.cpp b/engines/bladerunner/script/scene/nr01.cpp
index e696edf5d9..3a0b46d53b 100644
--- a/engines/bladerunner/script/scene/nr01.cpp
+++ b/engines/bladerunner/script/scene/nr01.cpp
@@ -383,13 +383,13 @@ void SceneScriptNR01::PlayerWalkedIn() {
Actor_Set_Goal_Number(kActorSteele, kGoalSteeleImmediatelyStartChapter4);
} else {
int v0 = Global_Variable_Query(kVariableHollowayArrest);
- if (v0 == 1) {
+ if (v0 == 1) { // Dektora called the fake cops
Actor_Says(kActorSteele, 1510, 15);
Actor_Says(kActorSteele, 1520, 14);
Actor_Says(kActorSteele, 1530, 13);
Actor_Says(kActorMcCoy, 3170, 13);
Actor_Set_Goal_Number(kActorSteele, kGoalSteeleNR01GoToNR08);
- } else if (v0 == 2) {
+ } else if (v0 == 2) { // Gordo called the fake cops
Actor_Says(kActorSteele, 1590, 15);
Actor_Says(kActorMcCoy, 3195, 14);
Actor_Says(kActorSteele, 1600, 16);
@@ -399,7 +399,7 @@ void SceneScriptNR01::PlayerWalkedIn() {
Actor_Says(kActorSteele, 1630, 14);
Actor_Says(kActorMcCoy, 3205, 12);
Actor_Set_Goal_Number(kActorSteele, kGoalSteeleNR01GoToNR02);
- } else if (v0 == 3) {
+ } else if (v0 == 3) { // Lucy called the fake cops
Actor_Says(kActorSteele, 1540, 15);
Actor_Says(kActorMcCoy, 3175, 13);
Actor_Says(kActorSteele, 1550, 13);
diff --git a/engines/bladerunner/script/scene/nr11.cpp b/engines/bladerunner/script/scene/nr11.cpp
index c52208e181..065b775a71 100644
--- a/engines/bladerunner/script/scene/nr11.cpp
+++ b/engines/bladerunner/script/scene/nr11.cpp
@@ -364,7 +364,7 @@ void SceneScriptNR11::PlayerWalkedIn() {
Delay(500);
Actor_Face_Current_Camera(kActorMcCoy, true);
Delay(750);
- Actor_Says(kActorMcCoy, 5290, 12);
+ Actor_Says(kActorMcCoy, 5290, 12); // Jesus
Delay(1000);
Actor_Set_Goal_Number(kActorSteele, kGoalSteeleNR11Enter);
Actor_Face_Actor(kActorMcCoy, kActorSteele, true);
diff --git a/engines/bladerunner/script/vk_script.cpp b/engines/bladerunner/script/vk_script.cpp
index cb6ed88075..158f9eb72b 100644
--- a/engines/bladerunner/script/vk_script.cpp
+++ b/engines/bladerunner/script/vk_script.cpp
@@ -1343,6 +1343,9 @@ void VKScript::askGrigorian(int questionId) {
VK_Eye_Animates(2);
VK_Play_Speech_Line(kActorGrigorian, 1110, 0.5f);
VK_Play_Speech_Line(kActorMcCoy, 8210, 0.5f);
+ if (_vm->_cutContent) {
+ VK_Play_Speech_Line(kActorMcCoy, 8215, 0.5f);
+ }
break;
case 7750: // High 09
VK_Eye_Animates(2);