aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/fullpipe/motion.h2
-rw-r--r--engines/fullpipe/utils.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h
index 733fa0839e..b0bfe92d1f 100644
--- a/engines/fullpipe/motion.h
+++ b/engines/fullpipe/motion.h
@@ -71,6 +71,8 @@ class MctlCompound : public MotionController {
MctlCompoundArray _motionControllers;
public:
+ MctlCompound() { _objtype = kObjTypeMctlCompound; }
+
virtual bool load(MfcArchive &file);
virtual int addObject(StaticANIObject *obj);
diff --git a/engines/fullpipe/utils.h b/engines/fullpipe/utils.h
index 3223b9c76c..e593bd9f18 100644
--- a/engines/fullpipe/utils.h
+++ b/engines/fullpipe/utils.h
@@ -69,7 +69,8 @@ enum ObjType {
kObjTypeObjstateCommand,
kObjTypeStaticANIObject,
kObjTypePictureObject,
- kObjTypeMovGraph
+ kObjTypeMovGraph,
+ kObjTypeMctlCompound
};
class CObject {