mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Fixed serialization of MovePoly class objects
See http://forum.zdoom.org/viewtopic.php?t=53787 Removed "speed" field which is serialized in the parent class
This commit is contained in:
parent
97107b6b6d
commit
d6b3cbe0c9
1 changed files with 0 additions and 1 deletions
|
@ -265,7 +265,6 @@ void DMovePoly::Serialize(FSerializer &arc)
|
||||||
{
|
{
|
||||||
Super::Serialize (arc);
|
Super::Serialize (arc);
|
||||||
arc("angle", m_Angle)
|
arc("angle", m_Angle)
|
||||||
("speed", m_Speed);
|
|
||||||
("speedv", m_Speedv);
|
("speedv", m_Speedv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue