]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - model_brush.h
removed key-below-escape forced toggleconsole, so that german keyboards can type ^
[xonotic/darkplaces.git] / model_brush.h
index d3865d587cf83931de41541b7f1c449a45e8015c..f04ab606bb078ee515a3948d8759511a845cc1f0 100644 (file)
@@ -756,6 +756,7 @@ q3dpvs_t;
 
 #define CHECKPVSBIT(pvs,b) ((b) >= 0 ? ((pvs)[(b) >> 3] & (1 << ((b) & 7))) : false)
 #define SETPVSBIT(pvs,b) ((b) >= 0 ? ((pvs)[(b) >> 3] |= (1 << ((b) & 7))) : false)
+#define CLEARPVSBIT(pvs,b) ((b) >= 0 ? ((pvs)[(b) >> 3] &= ~(1 << ((b) & 7))) : false)
 
 #endif