Make the menu get initialized after video; otherwise, the menu will never

pick up brightness and contrast. :)
This commit is contained in:
Jeff Teunissen 2001-05-13 08:26:45 +00:00
parent 540d13b588
commit 2e88971a08

View file

@ -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.