From a83ea4ddd29c95b4b280ed4a527629934dc8bf92 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 23 Sep 2016 09:20:58 +0200 Subject: [PATCH] - fixed two typos in property names. --- src/g_shared/a_decals.cpp | 2 +- src/p_acs.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/g_shared/a_decals.cpp b/src/g_shared/a_decals.cpp index 7eea30fef..e02ab1a52 100644 --- a/src/g_shared/a_decals.cpp +++ b/src/g_shared/a_decals.cpp @@ -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 diff --git a/src/p_acs.cpp b/src/p_acs.cpp index d7b042698..a310a3944 100644 --- a/src/p_acs.cpp +++ b/src/p_acs.cpp @@ -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++)