FULLPIPE: Bug fix MctlCompound::load()

This commit is contained in:
Eugene Sandulenko 2013-09-28 11:21:13 +03:00
parent 93c3375244
commit d207dcfba6
2 changed files with 4 additions and 5 deletions

View file

@ -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();