mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 04:01:17 +00:00
Make the menu get initialized after video; otherwise, the menu will never
pick up brightness and contrast. :)
This commit is contained in:
parent
540d13b588
commit
2e88971a08
1 changed files with 2 additions and 1 deletions
|
@ -1628,7 +1628,6 @@ Host_Init (void)
|
|||
W_LoadWadFile ("gfx.wad");
|
||||
Key_Init ();
|
||||
Con_Init ();
|
||||
M_Init ();
|
||||
Mod_Init ();
|
||||
|
||||
// Con_Printf ("Exe: "__TIME__" "__DATE__"\n");
|
||||
|
@ -1646,6 +1645,7 @@ Host_Init (void)
|
|||
CDAudio_Init ();
|
||||
VID_Init (host_basepal);
|
||||
IN_Init ();
|
||||
M_Init ();
|
||||
Draw_Init ();
|
||||
SCR_Init ();
|
||||
R_Init ();
|
||||
|
@ -1670,6 +1670,7 @@ Host_Init (void)
|
|||
Skin_Init ();
|
||||
CL_Init ();
|
||||
IN_Init ();
|
||||
M_Init ();
|
||||
#endif
|
||||
|
||||
// Reparse the command line for + commands.
|
||||
|
|
Loading…
Reference in a new issue