mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 23:54:35 +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)
|
("renderflags", RenderFlags)
|
||||||
("renderstyle", RenderStyle)
|
("renderstyle", RenderStyle)
|
||||||
("side", Side)
|
("side", Side)
|
||||||
("sectpr", Sector);
|
("sector", Sector);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DBaseDecal::GetXY (side_t *wall, double &ox, double &oy) const
|
void DBaseDecal::GetXY (side_t *wall, double &ox, double &oy) const
|
||||||
|
|
|
@ -2932,7 +2932,7 @@ void DACSThinker::Serialize(FSerializer &arc)
|
||||||
{
|
{
|
||||||
DLevelScript *script = nullptr;
|
DLevelScript *script = nullptr;
|
||||||
RunningScripts.Clear();
|
RunningScripts.Clear();
|
||||||
if (arc.BeginArray("runniongscripts"))
|
if (arc.BeginArray("runningscripts"))
|
||||||
{
|
{
|
||||||
auto cnt = arc.ArraySize();
|
auto cnt = arc.ArraySize();
|
||||||
for (int i = 0; i < cnt; i++)
|
for (int i = 0; i < cnt; i++)
|
||||||
|
|
Loading…
Reference in a new issue