File tree Expand file tree Collapse file tree 7 files changed +18
-15
lines changed
Expand file tree Collapse file tree 7 files changed +18
-15
lines changed Original file line number Diff line number Diff line change @@ -2203,7 +2203,7 @@ void D_DoomMain (void)
22032203 // @arg <n>
22042204 // @vanilla
22052205 //
2206- // Start playing on episode n (1-4).
2206+ // Start playing episode n (1-4).
22072207 //
22082208
22092209 p = M_CheckParmWithArgs ("-episode" , 1 );
Original file line number Diff line number Diff line change @@ -583,8 +583,8 @@ void D_CheckRecordFrom(void)
583583 // @category demo
584584 // @arg <save-num> <demo-name>
585585 //
586- // Record a demo, loading from the given filename. Equivalent
587- // to -loadgame <save-num> -record <demo-name>.
586+ // Load a game from the given savegame slot and record a demo from
587+ // it. Equivalent to -loadgame <save-num> -record <demo-name>.
588588
589589 p = M_CheckParmWithArgs ("-recordfrom" , 2 );
590590 if (!p )
@@ -993,7 +993,7 @@ void D_DoomMain(void)
993993 // @arg <n>
994994 // @vanilla
995995 //
996- // Start playing on episode n (1-4).
996+ // Start playing episode n (1-4).
997997 //
998998
999999 p = M_CheckParmWithArgs ("-episode" , 1 );
Original file line number Diff line number Diff line change @@ -1382,8 +1382,8 @@ static void CheckRecordFrom(void)
13821382 // @category demo
13831383 // @arg <save-num> <demo-name>
13841384 //
1385- // Record a demo, loading from the given filename. Equivalent
1386- // to -loadgame <save-num> -record <demo-name>.
1385+ // Load a game from the given savegame slot and record a demo from
1386+ // it. Equivalent to -loadgame <save-num> -record <demo-name>.
13871387 //
13881388 p = M_CheckParm ("-recordfrom" );
13891389 if (!p || p > myargc - 2 )
Original file line number Diff line number Diff line change @@ -1145,8 +1145,8 @@ static boolean I_MP_InitMusic(void)
11451145 // @category obscure
11461146 // @arg <file>
11471147 //
1148- // Read all MIDI files from loaded WAD files, dump an example substitution
1149- // music config file to the specified filename and quit.
1148+ // Read all MIDI files from loaded WAD files, dump an example
1149+ // substitution music config file to the specified file, and quit.
11501150 //
11511151 i = M_CheckParmWithArgs ("-dumpsubstconfig" , 1 );
11521152
Original file line number Diff line number Diff line change @@ -288,10 +288,10 @@ void M_FindResponseFile(void)
288288 //!
289289 // @arg <file>
290290 //
291- // Load extra command line arguments from the given response file.
292- // Arguments read from the file will be inserted into the command
293- // line replacing this argument. A response file can also be loaded
294- // using the abbreviated syntax '@filename .rsp'.
291+ // Load extra command- line arguments from the given response
292+ // file. Arguments read from the file are inserted into the
293+ // command line, replacing this argument. A response file can
294+ // also be loaded using the abbreviated syntax '@file .rsp'.
295295 //
296296 i = M_CheckParmWithArgs ("-response" , 1 );
297297 if (i <= 0 )
Original file line number Diff line number Diff line change @@ -1697,7 +1697,8 @@ void D_DoomMain (void)
16971697 // @category obscure
16981698 // @vanilla
16991699 //
1700- // Set Rogue playtesting mode (godmode, noclip toggled by backspace).
1700+ // Set Rogue playtesting mode
1701+ // (god mode; no cliping mode toggled by backspace).
17011702 //
17021703
17031704 workparm = M_CheckParm ("-work" );
@@ -2113,7 +2114,7 @@ void D_DoomMain (void)
21132114 // // @arg <n>
21142115 // // @vanilla
21152116 // //
2116- // // Start playing on episode n (1-4).
2117+ // // Start playing episode n (1-4).
21172118 // //
21182119
21192120 // p = M_CheckParmWithArgs("-episode", 1);
Original file line number Diff line number Diff line change @@ -177,7 +177,9 @@ boolean W_ParseCommandLine(void)
177177 // @arg <files>
178178 // @vanilla
179179 //
180- // Load the specified PWAD files.
180+ // Load the specified PWAD files. Each succeeding argument is
181+ // treated as a PWAD file name until one starts with a dash or the
182+ // argument list is exhausted.
181183 //
182184
183185 p = M_CheckParmWithArgs ("-file" , 1 );
You can’t perform that action at this time.
0 commit comments