summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-09 15:01:16 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-09 15:01:16 +0000
commit163667976cbd186f9f58947d7782def8b979d884 (patch)
tree1ab102463a3b8e6ed0c33c05d1ba5e53801d8b8a /crawl-ref/source/travel.cc
parent523f4a0a5478fe3146086a980afa5a8f8ff3d052 (diff)
downloadcrawl-ref-163667976cbd186f9f58947d7782def8b979d884.tar.gz
crawl-ref-163667976cbd186f9f58947d7782def8b979d884.zip
Force mesclr() at travel depth prompt to avoid hideous prompts with
delay_message_clear. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1438 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index af6c26a87e..941e559ad2 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -2005,7 +2005,7 @@ static level_id prompt_travel_depth(const level_id &id)
int depth = get_nearest_level_depth(branch);
for (;;)
{
- mesclr();
+ mesclr(true);
mprf(MSGCH_PROMPT, "What level of %s? "
"(default %d) ", branches[branch].longname, depth);