FULLPIPE: Reading CMovGraphNode

This commit is contained in:
Eugene Sandulenko 2013-06-16 16:10:46 +03:00
parent a8d733b2b2
commit 5ea45699a8
6 changed files with 120 additions and 20 deletions

View file

@ -504,4 +504,20 @@ bool Sc2::load(MfcArchive &file) {
return true;
}
bool CDWordArray::load(MfcArchive &file) {
int count = file.readCount();
debug(0, "CDWordArray::count: %d", count);
resize(count);
for (int i = 0; i < count; i++) {
int32 t = file.readUint32LE();
push_back(t);
}
return true;
}
} // End of namespace Fullpipe