summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/coord-circle.h
diff options
context:
space:
mode:
authorSamuel Bronson <naesten@gmail.com>2013-10-17 22:25:03 -0400
committerSamuel Bronson <naesten@gmail.com>2013-10-17 22:25:03 -0400
commitb1ba237af93f34494c9de322f4ff881ad69cb7c7 (patch)
tree17e6e6d80b7673fc0aa34180d43b3ab75b9cc862 /crawl-ref/source/coord-circle.h
parent0cc09970baaff32375ba34fe1005c9c15579c0cb (diff)
downloadcrawl-ref-b1ba237af93f34494c9de322f4ff881ad69cb7c7.tar.gz
crawl-ref-b1ba237af93f34494c9de322f4ff881ad69cb7c7.zip
Shave some words off a few datatypes.
(I wonder if this saves even one kilobyte?)
Diffstat (limited to 'crawl-ref/source/coord-circle.h')
-rw-r--r--crawl-ref/source/coord-circle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/coord-circle.h b/crawl-ref/source/coord-circle.h
index eff4f9c35a..7cda864b65 100644
--- a/crawl-ref/source/coord-circle.h
+++ b/crawl-ref/source/coord-circle.h
@@ -48,13 +48,13 @@ class circle_def
// Are we tracking global LOS radius?
bool los_radius;
- shape_type shape;
-
- coord_def origin;
-
// Check against map bounds for containment?
bool check_bounds;
+ shape_type shape:8;
+
+ coord_def origin;
+
int radius;
int radius_sq;
rect_def bbox;