summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-maps.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-22 16:11:58 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-22 16:12:23 -0400
commitceae2edba1c5a3aa3872228cafafc8556e814f5b (patch)
tree74f1b3c293a104ef8ab56713ecfb06b603ecfdf3 /crawl-ref/source/dbg-maps.cc
parent7a751d0484cc0c48d826fec47ce16367f9871ecb (diff)
downloadcrawl-ref-ceae2edba1c5a3aa3872228cafafc8556e814f5b.tar.gz
crawl-ref-ceae2edba1c5a3aa3872228cafafc8556e814f5b.zip
Rename 'mesclr()' to 'clear_messages()'
Diffstat (limited to 'crawl-ref/source/dbg-maps.cc')
-rw-r--r--crawl-ref/source/dbg-maps.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/dbg-maps.cc b/crawl-ref/source/dbg-maps.cc
index 48f659c984..296ec35bc9 100644
--- a/crawl-ref/source/dbg-maps.cc
+++ b/crawl-ref/source/dbg-maps.cc
@@ -63,7 +63,7 @@ static bool _mg_is_disconnected_level()
static bool mg_do_build_level(int niters)
{
- mesclr();
+ clear_messages();
mprf("On %s (%d); %d g, %d fail, %u err%s, %u uniq, "
"%d try, %d (%.2lf%%) vetos",
level_id::current().describe().c_str(), niters,
@@ -192,12 +192,12 @@ static bool mg_build_dungeon()
static void mg_build_levels(int niters)
{
- mesclr();
+ clear_messages();
mpr("Generating dungeon map stats");
for (int i = 0; i < niters; ++i)
{
- mesclr();
+ clear_messages();
mprf("On %d of %d; %d g, %d fail, %u err%s, %u uniq, "
"%d try, %d (%.2lf%%) vetoes",
i, niters,
@@ -253,7 +253,7 @@ static void _mapgen_report_available_random_vaults(FILE *outf)
// Reporting all the vaults could take a while.
watchdog();
fprintf(outf, "\n%s -------------\n", i->describe().c_str());
- mesclr();
+ clear_messages();
mprf("Examining random maps at %s", i->describe().c_str());
mg_report_random_maps(outf, *i);
if (kbhit() && key_is_escape(getchk()))