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.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index 289dfa9c0c..223cc8c6d6 100644
--- a/engines/fullpipe/statics.cpp
+++ b/engines/fullpipe/statics.cpp
@@ -222,17 +222,14 @@ bool StaticANIObject::load(MfcArchive &file) {
Common::String movname = genFileName(_id, movNum, "mov");
- Common::SeekableReadStream *f = g_fp->_currArchive->createReadStreamForMember(movname);
+ Common::ScopedPtr<Common::SeekableReadStream> f(g_fp->_currArchive->createReadStreamForMember(movname));
Movement *mov = new Movement();
+ _movements.push_back(mov);
- MfcArchive archive(f);
+ MfcArchive archive(f.get());
mov->load(archive, this);
-
- _movements.push_back(mov);
-
- delete f;
}
Common::Point pt;