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:
parent
bc1f25a11b
commit
6430b9b214
57 changed files with 931 additions and 658 deletions
|
@ -84,11 +84,11 @@ qterm_t *activeqterm;
|
|||
float con_cursorspeed = 4;
|
||||
|
||||
|
||||
cvar_t con_numnotifylines = {"con_notifylines","4"}; //max lines to show
|
||||
cvar_t con_notifytime = {"con_notifytime","3"}; //seconds
|
||||
cvar_t con_centernotify = {"con_centernotify", "0"};
|
||||
cvar_t con_displaypossabilities = {"con_displaypossabilities", "1"};
|
||||
cvar_t cl_chatmode = {"cl_chatmode", "2"};
|
||||
cvar_t con_numnotifylines = SCVAR("con_notifylines","4"); //max lines to show
|
||||
cvar_t con_notifytime = SCVAR("con_notifytime","3"); //seconds
|
||||
cvar_t con_centernotify = SCVAR("con_centernotify", "0");
|
||||
cvar_t con_displaypossabilities = SCVAR("con_displaypossabilities", "1");
|
||||
cvar_t cl_chatmode = SCVAR("cl_chatmode", "2");
|
||||
|
||||
#define NUM_CON_TIMES 24
|
||||
float con_times[NUM_CON_TIMES]; // realtime time the line was generated
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue