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:
alexey.lysiuk 2016-10-14 13:39:19 +03:00
parent 97107b6b6d
commit d6b3cbe0c9
1 changed files with 0 additions and 1 deletions

View File

@ -265,7 +265,6 @@ void DMovePoly::Serialize(FSerializer &arc)
{
Super::Serialize (arc);
arc("angle", m_Angle)
("speed", m_Speed);
("speedv", m_Speedv);
}