Match disasm., applies to The Dig too.

svn-id: r14167
This commit is contained in:
Travis Howell 2004-07-04 12:06:17 +00:00
parent 11d552ff7e
commit 5b7157e3c9
3 changed files with 12 additions and 15 deletions

View file

@ -1465,7 +1465,18 @@ void ScummEngine_v6::o6_setBoxFlags() {
}
void ScummEngine_v6::o6_createBoxMatrix() {
int i;
Actor *a;
createBoxMatrix();
if ((_gameId == GID_DIG) || (_gameId == GID_CMI)) {
for (i = 1; i < _numActors; i++) {
a = &_actors[i];
if (a && a->isInCurrentRoom())
a->putActor(a->_pos.x, a->_pos.y, _currentRoom);
}
}
}
void ScummEngine_v6::o6_resourceRoutines() {