Skip to content

Commit

Permalink
Allow -dogs cmdline parm without argument
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Oct 30, 2023
1 parent 6ca8843 commit 41e8cc4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2543,6 +2543,8 @@ static void D_DoomMainSetup(void)
if (dogs > 0 && dogs <= MAXFRIENDS)
P_InitHelperDogs(dogs);
}
else if (M_CheckParm("-dogs"))
P_InitHelperDogs(MAXFRIENDS);

M_Init();
R_Init();
Expand Down

0 comments on commit 41e8cc4

Please sign in to comment.