mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 21:41:57 +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");
|
W_LoadWadFile ("gfx.wad");
|
||||||
Key_Init ();
|
Key_Init ();
|
||||||
Con_Init ();
|
Con_Init ();
|
||||||
M_Init ();
|
|
||||||
Mod_Init ();
|
Mod_Init ();
|
||||||
|
|
||||||
// Con_Printf ("Exe: "__TIME__" "__DATE__"\n");
|
// Con_Printf ("Exe: "__TIME__" "__DATE__"\n");
|
||||||
|
@ -1646,6 +1645,7 @@ Host_Init (void)
|
||||||
CDAudio_Init ();
|
CDAudio_Init ();
|
||||||
VID_Init (host_basepal);
|
VID_Init (host_basepal);
|
||||||
IN_Init ();
|
IN_Init ();
|
||||||
|
M_Init ();
|
||||||
Draw_Init ();
|
Draw_Init ();
|
||||||
SCR_Init ();
|
SCR_Init ();
|
||||||
R_Init ();
|
R_Init ();
|
||||||
|
@ -1670,6 +1670,7 @@ Host_Init (void)
|
||||||
Skin_Init ();
|
Skin_Init ();
|
||||||
CL_Init ();
|
CL_Init ();
|
||||||
IN_Init ();
|
IN_Init ();
|
||||||
|
M_Init ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Reparse the command line for + commands.
|
// Reparse the command line for + commands.
|
||||||
|
|
Loading…
Reference in a new issue