mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 05:21:58 +00:00
forgot to call cl_Cmd_Init :)
This commit is contained in:
parent
d6e0069c69
commit
da7fc52b3e
2 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue