aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v8.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-13 23:42:41 +0000
committerMax Horn2003-05-13 23:42:41 +0000
commit08f7ec192ea6694e2fc0ab0efb6bec5ef5a4b5d2 (patch)
tree07bcc328f550214473dc89f93310370be672d1e8 /scumm/script_v8.cpp
parent0ee0e7f6347def3b9b32f62f37584a3a19131913 (diff)
downloadscummvm-rg350-08f7ec192ea6694e2fc0ab0efb6bec5ef5a4b5d2.tar.gz
scummvm-rg350-08f7ec192ea6694e2fc0ab0efb6bec5ef5a4b5d2.tar.bz2
scummvm-rg350-08f7ec192ea6694e2fc0ab0efb6bec5ef5a4b5d2.zip
NUM_ACTORS -> _numActors (for consistency)
svn-id: r7489
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r--scumm/script_v8.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 76cee771be..37645a124d 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -868,7 +868,7 @@ void Scumm_v8::o8_createBoxMatrix() {
createBoxMatrix();
- for(i = 1; i < NUM_ACTORS; i++) {
+ for(i = 1; i < _numActors; i++) {
a = &_actors[i];
if (a && a->isInCurrentRoom())
a->adjustActorPos();