about summary refs log tree commit diff homepage
path: root/torus.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-19 15:44:16 -0400
committerJune McEnroe <june@causal.agency>2018-07-19 15:44:16 -0400
commit515992ffca07b2aeb6c13b333b194e42e5a1fe34 (patch)
treeab23be1b7e8a6ee555355153c963d933ace6fe38 /torus.h
parentAdd server map generation (diff)
downloadtorus-515992ffca07b2aeb6c13b333b194e42e5a1fe34.tar.gz
torus-515992ffca07b2aeb6c13b333b194e42e5a1fe34.zip
Add ARRAY_LEN macro
Diffstat (limited to '')
-rw-r--r--torus.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/torus.h b/torus.h
index 918a131..775df3c 100644
--- a/torus.h
+++ b/torus.h
@@ -24,6 +24,8 @@
 #define PACKED __attribute__((packed))
 #define ALIGNED(x) __attribute__((aligned(x)))
 
+#define ARRAY_LEN(a) (sizeof(a) / sizeof((a)[0]))
+
 #undef COLOR_BLACK
 #undef COLOR_RED
 #undef COLOR_GREEN
@@ -86,7 +88,6 @@ static const struct {
 	{ TILE_COLS * 1 / 4, TILE_ROWS * 1 / 4 }, // SE
 	{ TILE_COLS * 3 / 4, TILE_ROWS * 1 / 4 }, // SW
 };
-static const size_t SPAWNS_LEN = sizeof(SPAWNS) / sizeof(SPAWNS[0]);
 
 enum {
 	MAP_ROWS = 11,