mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix segfault when using -abyss etc
This commit is contained in:
parent
350920399e
commit
9c9e22f253
1 changed files with 4 additions and 4 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue