fix the init issues that stopped nq working after Despair's heroic efforts

This commit is contained in:
Bill Currie 2001-05-09 06:15:14 +00:00
parent f818392e26
commit e96ab564af
2 changed files with 9 additions and 1 deletions

View file

@ -130,7 +130,10 @@ Draw_Init (void)
r_rectdesc.rowbytes = draw_backtile->width;
}
void
Draw_Init_Cvars (void)
{
}
/*
================

View file

@ -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 ();