]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
use #define instead of const for target_speed spawnflags
authorJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Wed, 8 Feb 2023 16:18:39 +0000 (17:18 +0100)
committerJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Wed, 8 Feb 2023 16:18:39 +0000 (17:18 +0100)
qcsrc/common/mapobjects/target/speed.qh

index f5f0319ab1a2c7dcb67996485470eb3f67b8d27e..6e8544439fc051ea55b990dcc7cd9e960def69b6 100644 (file)
@@ -1,12 +1,12 @@
 #pragma once
 
 
-const int SPEED_PERCENTAGE = BIT(0);
-const int SPEED_ADD = BIT(1);
-const int SPEED_POSITIVE_X = BIT(2);
-const int SPEED_NEGATIVE_X = BIT(3);
-const int SPEED_POSITIVE_Y = BIT(4);
-const int SPEED_NEGATIVE_Y = BIT(5);
-const int SPEED_POSITIVE_Z = BIT(6);
-const int SPEED_NEGATIVE_Z = BIT(7);
-const int SPEED_LAUNCHER = BIT(8);
+#define SPEED_PERCENTAGE BIT(0)
+#define SPEED_ADD        BIT(1)
+#define SPEED_POSITIVE_X BIT(2)
+#define SPEED_NEGATIVE_X BIT(3)
+#define SPEED_POSITIVE_Y BIT(4)
+#define SPEED_NEGATIVE_Y BIT(5)
+#define SPEED_POSITIVE_Z BIT(6)
+#define SPEED_NEGATIVE_Z BIT(7)
+#define SPEED_LAUNCHER   BIT(8)