mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-26 22:11:54 +00:00
- Blood: Fix missing call to Super while saving.
This commit is contained in:
parent
31e3048369
commit
27ae6a4c20
1 changed files with 2 additions and 2 deletions
|
@ -2397,8 +2397,8 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, POSTURE& w, POSTUR
|
||||||
|
|
||||||
void DBloodPlayer::Serialize(FSerializer& arc)
|
void DBloodPlayer::Serialize(FSerializer& arc)
|
||||||
{
|
{
|
||||||
arc
|
Super::Serialize(arc);
|
||||||
("newweapon", newWeapon)
|
arc("newweapon", newWeapon)
|
||||||
("weaponqav", weaponQav)
|
("weaponqav", weaponQav)
|
||||||
("qavcallback", qavCallback)
|
("qavcallback", qavCallback)
|
||||||
("isrunning", isRunning)
|
("isrunning", isRunning)
|
||||||
|
|
Loading…
Reference in a new issue