ref: 28e6533feb8aee27e51f88624827064ecefcfbd4
parent: 3e21ed71a3ae99bc542d9eadca76c283366985cf
author: mfrancis95 <mikefrancis95@gmail.com>
date: Mon Oct 1 21:09:06 EDT 2018
Format the previous commit according to Chocolate Doom's coding style guidelines
--- a/src/doom/p_setup.c
+++ b/src/doom/p_setup.c
@@ -391,9 +391,15 @@
}
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);
}