Fix indentation in MOBJCONSISTANCY conditional

This commit is contained in:
X.organic 2021-02-16 23:27:44 +01:00
parent 90611ed547
commit 0cbf9a791b
No known key found for this signature in database
GPG Key ID: E8A896BE6A3BC4E0
1 changed files with 63 additions and 62 deletions

View File

@ -4480,7 +4480,8 @@ static INT16 Consistancy(void)
ret += P_GetRandSeed();
#ifdef MOBJCONSISTANCY
if (gamestate == GS_LEVEL) {
if (gamestate == GS_LEVEL)
{
for (th = thlist[THINK_MOBJ].next; th != &thlist[THINK_MOBJ]; th = th->next)
{
if (th->function.acp1 == (actionf_p1)P_RemoveThinkerDelayed)
@ -4547,7 +4548,7 @@ if (gamestate == GS_LEVEL) {
ret += mo->frame;
}
}
}
}
#endif
DEBFILE(va("Consistancy = %u\n", (ret & 0xFFFF)));