- fixed some merging issues.

This commit is contained in:
Christoph Oelckers 2019-01-23 21:37:51 +01:00
parent 7966282c1c
commit 8872125f96
2 changed files with 6 additions and 8 deletions

View File

@ -548,9 +548,7 @@ CUSTOM_CVAR (Int, cl_maxdecals, 1024, CVAR_ARCHIVE)
}
else
{
ForAllLevels([&](FLevelLocals *Level)
{
while (Level->ImpactDecalCount > self)
while (level.ImpactDecalCount > self)
{
DThinker *thinker = DThinker::FirstThinker(STAT_AUTODECAL);
if (thinker != NULL)
@ -558,7 +556,6 @@ CUSTOM_CVAR (Int, cl_maxdecals, 1024, CVAR_ARCHIVE)
thinker->Destroy();
}
}
});
}
}

View File

@ -615,6 +615,7 @@ void DInterBackground::drawBackground(int state, bool drawsplat, bool snl_pointe
for (i = 0; i<anims.Size(); i++)
{
in_anim_t * a = &anims[i];
level_info_t *li;
switch (a->type & ANIM_CONDITION)
{