diff options
| author | Eugene Sandulenko | 2013-10-30 22:24:37 +0200 |
|---|---|---|
| committer | Eugene Sandulenko | 2013-11-03 01:28:03 +0200 |
| commit | 35236884d706536af35b2eff138430afa0acc0a3 (patch) | |
| tree | d486d6b4a2caa60798d56d1e9d1640718515d095 /engines | |
| parent | d7d88a25a4350f257c455c1ffc7d325ea915f74e (diff) | |
| download | scummvm-rg350-35236884d706536af35b2eff138430afa0acc0a3.tar.gz scummvm-rg350-35236884d706536af35b2eff138430afa0acc0a3.tar.bz2 scummvm-rg350-35236884d706536af35b2eff138430afa0acc0a3.zip | |
FULLPIPE: Implement MctlCompound::freeItems()
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/fullpipe/motion.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index aa7d02a405..d117890d54 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -113,7 +113,8 @@ void MctlCompound::initMovGraph2() { } void MctlCompound::freeItems() { - warning("STUB: MctlCompound::freeItems()"); + for (uint i = 0; i < _motionControllers.size(); i++) + _motionControllers[i]->_motionControllerObj->freeItems(); } MessageQueue *MctlCompound::method34(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId) { |
