mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 04:01:17 +00:00
move the final command line stuff to AFTER all the subsystems have been
initialised.
This commit is contained in:
parent
b439951184
commit
ff89f60c74
1 changed files with 5 additions and 5 deletions
|
@ -1687,11 +1687,6 @@ Host_Init (void)
|
|||
V_Init_Cvars ();
|
||||
VID_Init_Cvars ();
|
||||
|
||||
// Reparse the command line for + commands.
|
||||
// (Note, no non-base commands exist yet)
|
||||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute ();
|
||||
|
||||
cl_Cmd_Init ();
|
||||
V_Init ();
|
||||
COM_Init ();
|
||||
|
@ -1744,6 +1739,11 @@ Host_Init (void)
|
|||
IN_Init ();
|
||||
#endif
|
||||
|
||||
// Reparse the command line for + commands.
|
||||
// (Note, no non-base commands exist yet)
|
||||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute ();
|
||||
|
||||
Cbuf_InsertText ("exec quake.rc\n");
|
||||
Cbuf_AddText
|
||||
("echo Type connect <internet address> or use a server browser to connect to a game.\n");
|
||||
|
|
Loading…
Reference in a new issue