Skip to content
Snippets Groups Projects
Commit 2768e400 authored by James R.'s avatar James R.
Browse files

Merge branch 'load-graphics-after-startuppwads' into 'next'

Fix graphics replacements not taking effect via -file

See merge request STJr/SRB2!1168
parents e7c49390 3dad7ca2
No related branches found
No related tags found
No related merge requests found
......@@ -1383,8 +1383,6 @@ void D_SRB2Main(void)
// setup loading screen
SCR_Startup();
// we need the font of the console
CONS_Printf("HU_Init(): Setting up heads up display.\n");
HU_Init();
CON_Init();
......@@ -1400,6 +1398,9 @@ void D_SRB2Main(void)
W_InitMultipleFiles(startuppwads);
D_CleanFile(startuppwads);
CONS_Printf("HU_LoadGraphics()...\n");
HU_LoadGraphics();
//--------------------------------------------------------- CONFIG.CFG
M_FirstLoadConfig(); // WARNING : this do a "COM_BufExecute()"
......
......@@ -330,8 +330,6 @@ void HU_Init(void)
// set shift translation table
shiftxform = english_shiftxform;
HU_LoadGraphics();
}
static inline void HU_Stop(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment