aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-06-22 00:47:53 +0200
committerBorja Lorente2016-08-14 18:32:46 +0200
commit0743e9531b5ef871e17cd7ca88966ea2c07b7147 (patch)
treebcdb310d791ae610a2e3c6a1424987d7e3f2d385 /engines/macventure/world.cpp
parent4d8f8fd36bdb9b1f807f4da04c9e3e4c3438dbfa (diff)
downloadscummvm-rg350-0743e9531b5ef871e17cd7ca88966ea2c07b7147.tar.gz
scummvm-rg350-0743e9531b5ef871e17cd7ca88966ea2c07b7147.tar.bz2
scummvm-rg350-0743e9531b5ef871e17cd7ca88966ea2c07b7147.zip
MACVENTURE: Implemente dynamic object drawing
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index 7a93773386..2ee7bae92f 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -122,7 +122,7 @@ Common::Array<ObjID> World::getChildren(ObjID objID, bool recursive) {
res.push_back(getChildren(child, false));
child = _relations[child * 2 + 1];
}
- return Common::Array<ObjID>();
+ return res;
}
Attribute World::getGlobal(uint32 attrID) {