Skip to content

Commit

Permalink
BLADERUNNER: Restored a cue in Grigorian's VK
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniou79 committed Jun 9, 2019
1 parent cb49e33 commit 5dd8aa7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions engines/bladerunner/script/scene/nr01.cpp
Expand Up @@ -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);
Expand All @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion engines/bladerunner/script/scene/nr11.cpp
Expand Up @@ -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);
Expand Down
3 changes: 3 additions & 0 deletions engines/bladerunner/script/vk_script.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 5dd8aa7

Please sign in to comment.