aboutsummaryrefslogtreecommitdiff
path: root/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'actor.cpp')
-rw-r--r--actor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/actor.cpp b/actor.cpp
index 9bd7d0b69f..0acfb74498 100644
--- a/actor.cpp
+++ b/actor.cpp
@@ -628,8 +628,9 @@ void Scumm::clearMsgQueue() {
void Scumm::walkActors() {
int i;
Actor *a;
+
for (i=1; i<NUM_ACTORS; i++) {
- a = derefActor(i);
+ a = derefActor(i);
if (a->room==_currentRoom)
walkActor(a);
}