summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapmark.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2010-07-24 22:46:44 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2010-07-24 22:46:44 +0530
commita00a272778fc4e94ae7e1e75d31a726d6266f5ef (patch)
tree06476a152ba6e7863916e4d2c9528fc71406502b /crawl-ref/source/mapmark.cc
parent6d20cd8e06befb42d68b69adbe7c2929ee173a26 (diff)
downloadcrawl-ref-a00a272778fc4e94ae7e1e75d31a726d6266f5ef.tar.gz
crawl-ref-a00a272778fc4e94ae7e1e75d31a726d6266f5ef.zip
Initialise have_inactive_markers to false.
Diffstat (limited to 'crawl-ref/source/mapmark.cc')
-rw-r--r--crawl-ref/source/mapmark.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/mapmark.cc b/crawl-ref/source/mapmark.cc
index 09c20adcff..e5e0aa9fe1 100644
--- a/crawl-ref/source/mapmark.cc
+++ b/crawl-ref/source/mapmark.cc
@@ -611,11 +611,12 @@ std::string map_tomb_marker::debug_describe() const
//////////////////////////////////////////////////////////////////////////
// Map markers in env.
-map_markers::map_markers() : markers()
+map_markers::map_markers() : markers(), have_inactive_markers(false)
{
}
-map_markers::map_markers(const map_markers &c) : markers()
+map_markers::map_markers(const map_markers &c)
+ : markers(), have_inactive_markers(false)
{
init_from(c);
}