added a macro for specifying all the cvar properties. This will simplify stuff for Q2.

Also added trace_endcontents and trace_surfaceflags.
File system (still too selectivly) reads gz files.
Fixed a buffer overflow in the http client.
Made server downloads decompress zipped files to a temporary file. This should make it download them faster.


git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1943 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-02-11 02:09:43 +00:00
parent bc1f25a11b
commit 6430b9b214
57 changed files with 931 additions and 658 deletions

View file

@ -135,15 +135,15 @@ float oldsbar = 0;
void SCR_ScreenShot_f (void);
void SCR_RSShot_f (void);
cvar_t show_fps = {"show_fps", "0"};
cvar_t show_fps_x = {"show_fps_x", "-1"};
cvar_t show_fps_y = {"show_fps_y", "-1"};
cvar_t show_clock = {"cl_clock", "0"};
cvar_t show_clock_x = {"cl_clock_x", "0"};
cvar_t show_clock_y = {"cl_clock_y", "-1"};
cvar_t show_speed = {"show_speed", "0"};
cvar_t show_speed_x = {"show_speed_x", "-1"};
cvar_t show_speed_y = {"show_speed_y", "-9"};
cvar_t show_fps = SCVAR("show_fps", "0");
cvar_t show_fps_x = SCVAR("show_fps_x", "-1");
cvar_t show_fps_y = SCVAR("show_fps_y", "-1");
cvar_t show_clock = SCVAR("cl_clock", "0");
cvar_t show_clock_x = SCVAR("cl_clock_x", "0");
cvar_t show_clock_y = SCVAR("cl_clock_y", "-1");
cvar_t show_speed = SCVAR("show_speed", "0");
cvar_t show_speed_x = SCVAR("show_speed_x", "-1");
cvar_t show_speed_y = SCVAR("show_speed_y", "-9");
extern char cl_screengroup[];
void CLSCR_Init(void)