mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-15 00:31:54 +00:00
Fixed serialization of DSeqPolyNode class objects
Polyobject pointer was not serialized at all
This commit is contained in:
parent
36aff68501
commit
0370592422
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ IMPLEMENT_CLASS (DSeqPolyNode)
|
||||||
void DSeqPolyNode::Serialize(FSerializer &arc)
|
void DSeqPolyNode::Serialize(FSerializer &arc)
|
||||||
{
|
{
|
||||||
Super::Serialize (arc);
|
Super::Serialize (arc);
|
||||||
//arc << m_Poly;
|
arc("poly", m_Poly);
|
||||||
}
|
}
|
||||||
|
|
||||||
IMPLEMENT_CLASS (DSeqSectorNode)
|
IMPLEMENT_CLASS (DSeqSectorNode)
|
||||||
|
|
Loading…
Reference in a new issue