Fixes for serializing and initializing
Fixed missing DViewPosition serializing. Fixed missing initializers in player_t.
This commit is contained in:
parent
26cff374de
commit
4726cc9ec5
4 changed files with 17 additions and 13 deletions
|
|
@ -1545,6 +1545,13 @@ void DActorModelData::OnDestroy()
|
|||
animationIDs.Reset();
|
||||
}
|
||||
|
||||
void DViewPosition::Serialize(FSerializer& arc)
|
||||
{
|
||||
Super::Serialize(arc);
|
||||
arc("offset", Offset)
|
||||
("flags", Flags);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
//
|
||||
// PROC P_ExplodeMissile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue