FULLPIPE: Further work on sc2 loader

This commit is contained in:
Eugene Sandulenko 2013-07-13 11:50:51 +03:00
parent 5eaa5696e7
commit a3de44d3b2
2 changed files with 80 additions and 40 deletions

View file

@ -517,6 +517,12 @@ bool CMctlCompound::load(MfcArchive &file) {
debug(0, "CMctlCompund::count = %d", count);
for (int i = 0; i < count; i++) {
CMctlCompoundArrayItem *obj = (CMctlCompoundArrayItem *)file.readClass();
_motionControllers.push_back(*obj);
}
return true;
}