From da7fc52b3ef79a6e9d94afe6cd805392c4ce52c9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 11 May 2000 23:49:03 +0000 Subject: [PATCH] forgot to call cl_Cmd_Init :) --- include/cmd.h | 1 + source/cl_main.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/cmd.h b/include/cmd.h index 52eca54..6c90774 100644 --- a/include/cmd.h +++ b/include/cmd.h @@ -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 diff --git a/source/cl_main.c b/source/cl_main.c index b8c2917..3c405cb 100644 --- a/source/cl_main.c +++ b/source/cl_main.c @@ -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 ();