FULLPIPE: Continue parsing CInteraction
This commit is contained in:
parent
0c03278937
commit
72aeac3f36
4 changed files with 40 additions and 9 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue