From 33cb29d5587af609bb747d1cef68dfffc60c6127 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 19 Nov 2017 20:43:55 +0200 Subject: DRASCULA: Document several updateVisible() calls --- engines/drascula/animation.cpp | 2 +- engines/drascula/rooms.cpp | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/engines/drascula/animation.cpp b/engines/drascula/animation.cpp index c89e5ff738..d9ff90748b 100644 --- a/engines/drascula/animation.cpp +++ b/engines/drascula/animation.cpp @@ -1293,7 +1293,7 @@ void DrasculaEngine::animation_5_5(){ } flags[6] = 1; - updateVisible(); + updateVisible(); // sets visible[1] to 1 and visible[2] to 0 pause(12); loadPic(96, frontSurface); diff --git a/engines/drascula/rooms.cpp b/engines/drascula/rooms.cpp index f99f00c8e7..e1a0bdd766 100644 --- a/engines/drascula/rooms.cpp +++ b/engines/drascula/rooms.cpp @@ -618,7 +618,7 @@ bool DrasculaEngine::room_22(int fl) { finishSound(); selectVerb(kVerbNone); removeObject(22); - updateVisible(); + updateVisible(); // sets visible[2] to 0 and visible[1] to 1 trackProtagonist = 3; talk(499); talk(500); @@ -825,7 +825,7 @@ bool DrasculaEngine::room_35(int fl) { visible[1] = 0; flags[15] = 1; flags[17] = 1; - updateVisible(); + updateVisible(); // sets visible[1] to 0 and visible[3] to 1 } else if (pickedObject == kVerbPick && fl == 149) { pickObject(13); visible[3] = 0; @@ -872,7 +872,7 @@ bool DrasculaEngine::room_53(int fl) { } else if (pickedObject == 16 && fl == 121) { flags[2] = 1; selectVerb(kVerbNone); - updateVisible(); + updateVisible(); // sets visible[3] to 0 pickedObject = kVerbMove; } else if (pickedObject == 16) { // Wall plug in chapter 5 @@ -906,7 +906,7 @@ bool DrasculaEngine::room_54(int fl) { pickObject(8); flags[13] = 1; talk_mus(10); - updateVisible(); + updateVisible(); // sets visible[3] to 0 } else if (pickedObject == 10 && fl == 119) { pause(4); talk(436); @@ -922,7 +922,7 @@ bool DrasculaEngine::room_55(int fl) { if (pickedObject == kVerbPick && fl == 122) { pickObject(12); flags[8] = 1; - updateVisible(); + updateVisible(); // sets visible[1] to 0 } else if (fl == 206) { playSound(11); animate("det.bin", 17); @@ -947,7 +947,7 @@ bool DrasculaEngine::room_56(int fl) { bool DrasculaEngine::room_58(int fl) { if (pickedObject == kVerbMove && fl == 103) { flags[8] = 1; - updateVisible(); + updateVisible(); // sets isDoor[1] to 1 } else { hasAnswer = 0; } -- cgit v1.2.3