aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/statics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/statics.cpp')
-rw-r--r--engines/fullpipe/statics.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index c1daea0c64..a85b90b595 100644
--- a/engines/fullpipe/statics.cpp
+++ b/engines/fullpipe/statics.cpp
@@ -112,16 +112,8 @@ StaticANIObject::StaticANIObject() {
}
StaticANIObject::~StaticANIObject() {
- for (uint i = 0; i < _staticsList.size(); i++)
- delete _staticsList[i];
-
- _staticsList.clear();
-
- for (uint i = 0; i < _movements.size(); i++)
- delete _movements[i];
-
- _movements.clear();
-
+ Common::for_each(_staticsList.begin(), _staticsList.end(), Common::DefaultDeleter<Statics>());
+ Common::for_each(_movements.begin(), _movements.end(), Common::DefaultDeleter<Movement>());
g_fp->_aniHandler->detachAllObjects();
}