mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-27 11:40:52 +00:00
fix shader loading on startup
This commit is contained in:
parent
da001a5b54
commit
dd4e5ea373
1 changed files with 9 additions and 0 deletions
|
@ -1176,6 +1176,15 @@ void D_SRB2Main(void)
|
||||||
CONS_Printf("I_StartupGraphics()...\n");
|
CONS_Printf("I_StartupGraphics()...\n");
|
||||||
I_StartupGraphics();
|
I_StartupGraphics();
|
||||||
|
|
||||||
|
#ifdef HWRENDER
|
||||||
|
if (rendermode == render_opengl)
|
||||||
|
{
|
||||||
|
INT32 i;
|
||||||
|
for (i = 0; i < numwadfiles; i++)
|
||||||
|
HWR_LoadShaders(i, (wadfiles[i]->type == RET_PK3));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
//--------------------------------------------------------- CONSOLE
|
//--------------------------------------------------------- CONSOLE
|
||||||
// setup loading screen
|
// setup loading screen
|
||||||
SCR_Startup();
|
SCR_Startup();
|
||||||
|
|
Loading…
Reference in a new issue