aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2014-05-01 14:21:18 +0300
committerEugene Sandulenko2014-05-01 14:21:18 +0300
commit8fc73ea0c541391ce7352d7cd0aba0ff320405a7 (patch)
treee6139eca33f6246a5165a3572beef720b8917372
parentf18ad22d22cd220a1f1f8ed46d279fc45402b2ff (diff)
downloadscummvm-rg350-8fc73ea0c541391ce7352d7cd0aba0ff320405a7.tar.gz
scummvm-rg350-8fc73ea0c541391ce7352d7cd0aba0ff320405a7.tar.bz2
scummvm-rg350-8fc73ea0c541391ce7352d7cd0aba0ff320405a7.zip
FULLPIPE: Implement MovGraphLink::~MovGraphLink()
-rw-r--r--engines/fullpipe/motion.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp
index 84f09efbeb..54854e3043 100644
--- a/engines/fullpipe/motion.cpp
+++ b/engines/fullpipe/motion.cpp
@@ -2542,7 +2542,10 @@ MovGraphLink::MovGraphLink() {
}
MovGraphLink::~MovGraphLink() {
- warning("STUB: MovGraphLink::~MovGraphLink()");
+ delete _movGraphReact;
+
+ _dwordArray1.clear();
+ _dwordArray2.clear();
}