fix segfault when using -abyss etc

This commit is contained in:
Bill Currie 2001-05-15 06:35:47 +00:00
parent 350920399e
commit 9c9e22f253

View file

@ -866,10 +866,6 @@ Host_Init (quakeparms_t *parms)
Cbuf_Init ();
Cmd_Init ();
GIB_Init ();
Game_Init ();
// execute +set as early as possible
Cmd_StuffCmds_f ();
Cbuf_Execute_Sets ();
@ -902,6 +898,10 @@ Host_Init (quakeparms_t *parms)
V_Init ();
COM_Init ();
GIB_Init ();
Game_Init ();
// reparse the command line for + commands other than set
// (sets still done, but it doesn't matter)
Cmd_StuffCmds_f ();