- Fixed: DCorpsePointer::Serialize didn't call the super method.

SVN r764 (trunk)
This commit is contained in:
Christoph Oelckers 2008-02-22 21:37:28 +00:00
parent 60472c2b45
commit ef9db276b3
1 changed files with 1 additions and 0 deletions

View File

@ -409,6 +409,7 @@ void DCorpsePointer::Destroy ()
void DCorpsePointer::Serialize (FArchive &arc)
{
Super::Serialize(arc);
arc << Corpse << Count;
}