summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-util.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-23 07:55:43 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-24 00:30:34 +0200
commit300c4468aa470e114bcbd8712623abd50abc1a59 (patch)
tree2f81be588f6cd3162d08fe84fa32c51c774152dd /crawl-ref/source/dbg-util.cc
parent79f717c01b6ca515d200ca9a50ca317bd33f9f6b (diff)
downloadcrawl-ref-300c4468aa470e114bcbd8712623abd50abc1a59.tar.gz
crawl-ref-300c4468aa470e114bcbd8712623abd50abc1a59.zip
Fix a (marshalled!) infinite leak in the Abyss.
For added insult, nothing used that list anymore.
Diffstat (limited to 'crawl-ref/source/dbg-util.cc')
-rw-r--r--crawl-ref/source/dbg-util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dbg-util.cc b/crawl-ref/source/dbg-util.cc
index 7109d69381..4eaf1c84b8 100644
--- a/crawl-ref/source/dbg-util.cc
+++ b/crawl-ref/source/dbg-util.cc
@@ -81,7 +81,7 @@ void debug_dump_levgen()
mprf("Level build method = %s, level layout type = %s, absdepth0 = %d",
method.c_str(), type.c_str(), env.absdepth0);
- if (!env.level_vault_list.empty())
+ if (!env.level_vaults.empty())
{
mpr("Level vaults:");
for (size_t i = 0; i < env.level_vaults.size(); ++i)