From d207dcfba64cefc8c3423878c8f20ee7752a862c Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 28 Sep 2013 11:21:13 +0300 Subject: FULLPIPE: Bug fix MctlCompound::load() --- engines/fullpipe/motion.cpp | 4 +++- engines/fullpipe/motion.h | 5 +---- 2 files changed, 4 insertions(+), 5 deletions(-) (limited to 'engines') diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index 5fd8d61263..5def3cb4a7 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -50,7 +50,9 @@ bool MctlCompound::load(MfcArchive &file) { for (int i = 0; i < count; i++) { debug(6, "CompoundArray[%d]", i); - MctlCompoundArrayItem *obj = (MctlCompoundArrayItem *)file.readClass(); + MctlCompoundArrayItem *obj = new MctlCompoundArrayItem(); + + obj->_motionControllerObj = (MotionController *)file.readClass(); int count1 = file.readUint32LE(); diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h index 2db3db6676..3e76f24c60 100644 --- a/engines/fullpipe/motion.h +++ b/engines/fullpipe/motion.h @@ -61,10 +61,7 @@ class MovGraphReact : public CObject { // Empty }; -class MctlConnectionPointsArray : public Common::Array, public CObject { - public: - virtual bool load(MfcArchive &file); -}; +typedef Common::Array MctlConnectionPointsArray; class MctlCompoundArrayItem : public CObject { friend class MctlCompound; -- cgit v1.2.3