Skip to content

Commit

Permalink
FULLPIPE: Implement MctlCompound::removeObject()
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed May 1, 2014
1 parent c7d017e commit b031373
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions engines/fullpipe/motion.cpp
Expand Up @@ -125,9 +125,10 @@ void MctlCompound::addObject(StaticANIObject *obj) {
}

int MctlCompound::removeObject(StaticANIObject *obj) {
warning("STUB: MctlCompound::removeObject()");
for (uint i = 0; i < _motionControllers.size(); i++)
_motionControllers[i]->_motionControllerObj->removeObject(obj);

return 0;
return 1;
}

void MctlCompound::initMovGraph2() {
Expand Down

0 comments on commit b031373

Please sign in to comment.