]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - client.h
+"DP_QC_CVAR_DESCRIPTION "
[xonotic/darkplaces.git] / client.h
index 889f8e739f93651707c6f293cd76a5c0097f8410..1cd4065376c6f7b3b0433cf39ea06d2967873f20 100644 (file)
--- a/client.h
+++ b/client.h
@@ -589,6 +589,7 @@ typedef struct client_static_s
        double qw_downloadspeedtime;
        int qw_downloadspeedcount;
        int qw_downloadspeedrate;
+       qboolean qw_download_deflate;
 
        // current file upload buffer (for uploading screenshots to server)
        unsigned char *qw_uploaddata;
@@ -641,7 +642,7 @@ typedef enum
 {
        PBLEND_ALPHA = 0,
        PBLEND_ADD = 1,
-       PBLEND_MOD = 2
+       PBLEND_INVMOD = 2
 }
 pblend_t;
 
@@ -683,8 +684,10 @@ decal_t;
 typedef struct particle_s
 {
        // fields used by rendering: (40 bytes)
-       unsigned short  typeindex;
-       unsigned short  texnum;
+       unsigned char   typeindex;
+       unsigned char   blendmode;
+       unsigned char   orientation;
+       unsigned char   texnum;
        vec3_t                  org;
        vec3_t                  vel; // velocity of particle, or orientation of decal, or end point of beam
        float                   size;