summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilecell.h
diff options
context:
space:
mode:
authorFlorian Diebold <flodiebold@gmail.com>2011-04-15 15:24:20 +0200
committerFlorian Diebold <flodiebold@gmail.com>2011-06-26 17:41:21 +0200
commit8440f08efeaf4f0b370d8e4244a221a83aebf0cc (patch)
treeaf7662dfdf3974564070a2e4688e9cecd3aa939f /crawl-ref/source/tilecell.h
parent547d3685d299015793e68392f6accd3b8ece211a (diff)
downloadcrawl-ref-8440f08efeaf4f0b370d8e4244a221a83aebf0cc.tar.gz
crawl-ref-8440f08efeaf4f0b370d8e4244a221a83aebf0cc.zip
Fix compilation after rebase.
Diffstat (limited to 'crawl-ref/source/tilecell.h')
-rw-r--r--crawl-ref/source/tilecell.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/tilecell.h b/crawl-ref/source/tilecell.h
index 2bb14b4d09..3a8b68302f 100644
--- a/crawl-ref/source/tilecell.h
+++ b/crawl-ref/source/tilecell.h
@@ -18,6 +18,7 @@ struct packed_cell
bool is_silenced;
bool is_haloed;
bool is_moldy;
+ bool glowing_mold;
bool is_sanctuary;
bool is_liquefied;
bool swamp_tree_water;
@@ -27,9 +28,9 @@ struct packed_cell
bool operator !=(const packed_cell &other) const { return !(*this == other); }
packed_cell() : num_dngn_overlay(0), is_bloody(false), is_silenced(false),
- is_haloed(false), is_moldy(false), is_sanctuary(false),
- is_liquefied(false), swamp_tree_water (false),
- blood_rotation(0) {}
+ is_haloed(false), is_moldy(false), glowing_mold(false),
+ is_sanctuary(false), is_liquefied(false),
+ swamp_tree_water (false), blood_rotation(0) {}
packed_cell(const packed_cell* c) : num_dngn_overlay(c->num_dngn_overlay),
fg(c->fg), bg(c->bg), flv(c->flv),
@@ -37,6 +38,7 @@ struct packed_cell
is_silenced(c->is_silenced),
is_haloed(c->is_haloed),
is_moldy(c->is_moldy),
+ glowing_mold(c->glowing_mold),
is_sanctuary(c->is_sanctuary),
is_liquefied(c->is_liquefied),
swamp_tree_water(c->swamp_tree_water),