From 28e6533feb8aee27e51f88624827064ecefcfbd4 Mon Sep 17 00:00:00 2001 From: mfrancis95 Date: Tue, 2 Oct 2018 01:09:06 -0400 Subject: [PATCH] Format the previous commit according to Chocolate Doom's coding style guidelines --- src/doom/p_setup.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/doom/p_setup.c b/src/doom/p_setup.c index 044554de..72c81988 100644 --- a/src/doom/p_setup.c +++ b/src/doom/p_setup.c @@ -391,9 +391,15 @@ void P_LoadThings (int lump) } if (!deathmatch) + { for (i = 0; i < MAXPLAYERS; i++) + { if (playeringame[i] && !playerstartsingame[i]) + { I_Error("P_LoadThings: Player %d start missing (vanilla crashes here)", i + 1); + } + } + } W_ReleaseLumpNum(lump); }