mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
This patch adds documentation to MOST of the commands in quakeforge,
however some commands I wasn't sure about, and others the docs are just plain missing. I've also changed cvars with missing/incomplete documentation so that we can find them more easily with just one grep. To find all commands and cvars with bogus/missing documentation grep for 'No Description' Let me know if I've screwed something up. Misty-chan PS: Deek do NOT commit the patch I sent to you, this obsoletes it.
This commit is contained in:
parent
b443a0254e
commit
033545f56f
1 changed files with 13 additions and 1 deletions
|
@ -842,7 +842,19 @@ CDAudio_Init (void)
|
|||
enabled = false;
|
||||
}
|
||||
|
||||
Cmd_AddCommand ("cd", CD_f, "No Description");
|
||||
Cmd_AddCommand ("cd", CD_f, "Control the CD player.
|
||||
Commands:
|
||||
eject - Eject the CD.
|
||||
info - Reports information on the CD.
|
||||
loop (track number) - Loops the specified track.
|
||||
remap (track1) (track2) ... - Remap the current track order.
|
||||
reset - Causes the CD audio to re-initialize.
|
||||
resume - Will resume playback after pause.
|
||||
off - Shuts down the CD audio system..
|
||||
on - Re-enables the CD audio system after a cd off command.
|
||||
pause - Pause the CD playback.
|
||||
play (track number) - Plays the specified track one time.
|
||||
stop - Stops the currently playing track.");
|
||||
|
||||
Con_Printf ("CD Audio Initialized\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue