diff options
author | Eugene Sandulenko | 2018-03-19 19:40:06 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-19 19:40:27 +0100 |
commit | bf798bdf80f7b8124f513e472ead6cf4ab67040e (patch) | |
tree | 408232e4f4a4a61ee48dab57535bc67a7bd3ec92 | |
parent | 5e94e8ab422586af720085741a2be6f3391f8e8e (diff) | |
download | scummvm-rg350-bf798bdf80f7b8124f513e472ead6cf4ab67040e.tar.gz scummvm-rg350-bf798bdf80f7b8124f513e472ead6cf4ab67040e.tar.bz2 scummvm-rg350-bf798bdf80f7b8124f513e472ead6cf4ab67040e.zip |
BLADERUNNER: Mark a bug in original code
-rw-r--r-- | engines/bladerunner/script/ai/officer_grayford.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bladerunner/script/ai/officer_grayford.cpp b/engines/bladerunner/script/ai/officer_grayford.cpp index 2d58cd574b..a1f9b11f9b 100644 --- a/engines/bladerunner/script/ai/officer_grayford.cpp +++ b/engines/bladerunner/script/ai/officer_grayford.cpp @@ -289,7 +289,7 @@ void AIScriptOfficerGrayford::ClickedByPlayer() { if (Random_Query(1, 2) == 1) { Actor_Says(kActorMcCoy, 5075, 14); } else { - Actor_Says(kActorMcCoy, 5075, 14); + Actor_Says(kActorMcCoy, 5075, 14); // bug in the original? Matches the above statement } Actor_Set_Goal_Number(kActorOfficerGrayford, 3); break; |