forgot to call cl_Cmd_Init :)

This commit is contained in:
Bill Currie 2000-05-11 23:49:03 +00:00
parent d6e0069c69
commit da7fc52b3e
2 changed files with 2 additions and 0 deletions

View file

@ -65,6 +65,7 @@ then searches for a command or variable that matches the first token.
typedef void (*xcommand_t) (void);
void Cmd_Init (void);
void cl_Cmd_Init (void);
void Cmd_AddCommand (char *cmd_name, xcommand_t function);
// called by the init functions of other parts of the program to

View file

@ -1442,6 +1442,7 @@ void Host_Init (quakeparms_t *parms)
Memory_Init (parms->membase, parms->memsize);
Cbuf_Init ();
Cmd_Init ();
cl_Cmd_Init ();
V_Init ();
COM_Init ();