diff options
author | Eugene Sandulenko | 2014-01-09 22:24:14 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-01-10 00:42:20 +0200 |
commit | cb1150c32d92d6a61b8e3eff3a154588a8ad53d9 (patch) | |
tree | 6702e1ba3cd7a77d72433891b74973ab7711a0ad /engines | |
parent | e1b95be2c1a44de33a11f8e3703482d26901a871 (diff) | |
download | scummvm-rg350-cb1150c32d92d6a61b8e3eff3a154588a8ad53d9.tar.gz scummvm-rg350-cb1150c32d92d6a61b8e3eff3a154588a8ad53d9.tar.bz2 scummvm-rg350-cb1150c32d92d6a61b8e3eff3a154588a8ad53d9.zip |
FULLPIPE: Add another destructor stub
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/motion.cpp | 5 | ||||
-rw-r--r-- | engines/fullpipe/motion.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index c855e99d05..32f01acbb7 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -1991,6 +1991,11 @@ MovGraphLink::MovGraphLink() { _objtype = kObjTypeMovGraphLink; } +MovGraphLink::~MovGraphLink() { + warning("STUB: MovGraphLink::~MovGraphLink()"); +} + + bool MovGraphLink::load(MfcArchive &file) { debug(5, "MovGraphLink::load()"); diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h index dc0e8e7168..6ad46e719a 100644 --- a/engines/fullpipe/motion.h +++ b/engines/fullpipe/motion.h @@ -289,6 +289,8 @@ class MovGraphLink : public CObject { public: MovGraphLink(); + virtual ~MovGraphLink(); + virtual bool load(MfcArchive &file); void calcNodeDistanceAndAngle(); |