nq-server seems to work now (mostly). got some issues with things like

"+map start" on the command line being ignored.
This commit is contained in:
Bill Currie 2001-10-05 16:08:07 +00:00
parent 4937ad6c71
commit b2d8d0f598
2 changed files with 7 additions and 1 deletions

View file

@ -68,6 +68,9 @@ vec3_t r_origin;
qboolean r_paused;
entity_t *r_view_model;
extern cvar_t *cl_rollangle;
extern cvar_t *cl_rollspeed;
void
CL_UpdateScreen (double realtime)
{
@ -118,6 +121,10 @@ CL_InitCvars (void)
{
cl_name = Cvar_Get ("_cl_name", "player", CVAR_ARCHIVE, NULL, "");
cl_writecfg = Cvar_Get ("cl_writecfg", "1", CVAR_NONE, NULL, "");
cl_rollangle = Cvar_Get ("cl_rollangle", "2.0", CVAR_NONE, NULL,
"How much your screen tilts when strafing");
cl_rollspeed = Cvar_Get ("cl_rollspeed", "200", CVAR_NONE, NULL,
"How quickly you straighten out after strafing");
}
void

View file

@ -257,7 +257,6 @@ main (int argc, const char **argv)
oldtime += time;
Host_Frame (time);
oldtime = time;
}
return true; // return success
}