mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-03-01 22:41:01 +00:00
- DWaitingCommand needs to serialize its unsafe state.
This commit is contained in:
parent
b008426ed7
commit
8667987cd6
1 changed files with 2 additions and 1 deletions
|
@ -197,7 +197,8 @@ void DWaitingCommand::Serialize(FSerializer &arc)
|
||||||
{
|
{
|
||||||
Super::Serialize (arc);
|
Super::Serialize (arc);
|
||||||
arc("command", Command)
|
arc("command", Command)
|
||||||
("ticsleft", TicsLeft);
|
("ticsleft", TicsLeft)
|
||||||
|
("unsafe", IsUnsafe);
|
||||||
}
|
}
|
||||||
|
|
||||||
DWaitingCommand::DWaitingCommand ()
|
DWaitingCommand::DWaitingCommand ()
|
||||||
|
|
Loading…
Reference in a new issue