mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- fixed two typos in property names.
This commit is contained in:
parent
cad2be46ac
commit
a83ea4ddd2
2 changed files with 2 additions and 2 deletions
|
@ -144,7 +144,7 @@ void DBaseDecal::Serialize(FSerializer &arc)
|
|||
("renderflags", RenderFlags)
|
||||
("renderstyle", RenderStyle)
|
||||
("side", Side)
|
||||
("sectpr", Sector);
|
||||
("sector", Sector);
|
||||
}
|
||||
|
||||
void DBaseDecal::GetXY (side_t *wall, double &ox, double &oy) const
|
||||
|
|
|
@ -2932,7 +2932,7 @@ void DACSThinker::Serialize(FSerializer &arc)
|
|||
{
|
||||
DLevelScript *script = nullptr;
|
||||
RunningScripts.Clear();
|
||||
if (arc.BeginArray("runniongscripts"))
|
||||
if (arc.BeginArray("runningscripts"))
|
||||
{
|
||||
auto cnt = arc.ArraySize();
|
||||
for (int i = 0; i < cnt; i++)
|
||||
|
|
Loading…
Reference in a new issue