]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove uses of nested BIT macro
authorTimePath <andrew.hardaker1995@gmail.com>
Mon, 26 Oct 2015 23:34:09 +0000 (10:34 +1100)
committerTimePath <andrew.hardaker1995@gmail.com>
Mon, 26 Oct 2015 23:34:09 +0000 (10:34 +1100)
qcsrc/lib/csqcmodel/common.qh
qcsrc/server/constants.qh

index e922453afec8e6a0458462ffd886e36d61ff8865..6da742a04e34944d814827d1e7618ce74f006682 100644 (file)
@@ -61,7 +61,7 @@ const int CSQCMODEL_PROPERTY_ORIGIN = BIT(20);
 const int CSQCMODEL_PROPERTY_YAW = BIT(19);
 const int CSQCMODEL_PROPERTY_PITCHROLL = BIT(18);
 const int CSQCMODEL_PROPERTY_FRAME2 = BIT(17);
-const int CSQCMODEL_PROPERTY_LERPFRAC = BIT(BIT(4));
+const int CSQCMODEL_PROPERTY_LERPFRAC = BIT(16);
 const int CSQCMODEL_PROPERTY_SIZE = BIT(15);
 
 #define ALLPROPERTIES_COMMON \
index 6de55189f1408c220cbba92b0368e61f6bf8890c..961b001d7914a1085994bc7f6680cebcc1cfd584 100644 (file)
@@ -4,7 +4,7 @@
 const int FL_WEAPON = BIT(13);
 const int FL_POWERUP = BIT(14);
 const int FL_PROJECTILE = BIT(15);
-const int FL_TOSSED = BIT(BIT(4));
+const int FL_TOSSED = BIT(16);
 const int FL_NO_WEAPON_STAY = BIT(17);
 const int FL_SPAWNING = BIT(18);
 const int FL_PICKUPITEMS = BIT(19);