FULLPIPE: Continue parsing CInteraction

This commit is contained in:
Eugene Sandulenko 2013-06-08 17:05:51 +03:00
parent 0c03278937
commit 72aeac3f36
4 changed files with 40 additions and 9 deletions

View file

@ -237,6 +237,8 @@ bool CInteractionController::load(MfcArchive &file) {
bool CObList::load(MfcArchive &file) {
int count = file.readCount();
debug(0, "CObList::count: %d", count);
for (int i = 0; i < count; i++) {
CObject *t = file.parseClass();
t->load(file);
@ -281,8 +283,10 @@ bool CInteraction::load(MfcArchive &file) {
_flags = file.readUint32LE();
_stringObj = file.readPascalString();
// messageQueue
debug(0, "CInteraction::_stringObj = %s", _stringObj);
// messageQueue
_messageQueue = (MessageQueue *)file.parseClass();
return true;
}