foxygit / doom Log in
commit 28e6533feb8aee27e51f88624827064ecefcfbd4
Author:     mfrancis95 <mikefrancis95@gmail.com>
AuthorDate: Tue Oct 2 01:09:06 2018 -0400
Commit:     mfrancis95 <mikefrancis95@gmail.com>
CommitDate: Tue Oct 2 09:47:11 2018 -0400

    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);
 }