mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix the init issues that stopped nq working after Despair's heroic efforts
This commit is contained in:
parent
f818392e26
commit
e96ab564af
2 changed files with 9 additions and 1 deletions
|
@ -130,7 +130,10 @@ Draw_Init (void)
|
|||
r_rectdesc.rowbytes = draw_backtile->width;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
Draw_Init_Cvars (void)
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
#include "gib.h"
|
||||
#include "sv_progs.h"
|
||||
|
||||
extern void R_Particles_Init_Cvars (void);
|
||||
|
||||
/*
|
||||
|
||||
A server can always be started, even if the system started out as a client
|
||||
|
@ -980,6 +982,9 @@ Host_Init (quakeparms_t *parms)
|
|||
VID_Init (vid_basepal);
|
||||
IN_Init ();
|
||||
|
||||
Draw_Init_Cvars ();
|
||||
R_Particles_Init_Cvars ();
|
||||
|
||||
Draw_Init ();
|
||||
SCR_Init ();
|
||||
R_Init ();
|
||||
|
|
Loading…
Reference in a new issue