mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- removed bogus BeginObject call in deferred script serializer.
This commit is contained in:
parent
d5b771afdd
commit
f52e2a8cc4
1 changed files with 1 additions and 1 deletions
|
@ -1743,7 +1743,7 @@ void P_WriteACSDefereds (FSerializer &arc)
|
|||
{
|
||||
if (wi.deferred.Size() > 0)
|
||||
{
|
||||
if (wi.deferred.Size() > 0 && arc.BeginObject(nullptr))
|
||||
if (wi.deferred.Size() > 0)
|
||||
{
|
||||
arc(wi.MapName, wi.deferred);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue