summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/overmap.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-13 20:06:21 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-13 20:06:21 +0000
commite80676d145343847ea8f90581d6bfa487375ef62 (patch)
tree6ceac062f1b7c8cfa9576418e4585ef7f3fc9990 /crawl-ref/source/overmap.cc
parent49f1fcf1259b1376b71850fffbb28b2a57bd7901 (diff)
downloadcrawl-ref-e80676d145343847ea8f90581d6bfa487375ef62.tar.gz
crawl-ref-e80676d145343847ea8f90581d6bfa487375ef62.zip
Apply my latest commits to 0.4.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6531 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/overmap.cc')
-rw-r--r--crawl-ref/source/overmap.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/overmap.cc b/crawl-ref/source/overmap.cc
index 158590d297..580c7b9426 100644
--- a/crawl-ref/source/overmap.cc
+++ b/crawl-ref/source/overmap.cc
@@ -631,7 +631,7 @@ void annotate_level()
li = li2;
else if (li2 != level_id::current())
{
- if (yesno("Annotate level on other end of current stairs?"))
+ if (yesno("Annotate level on other end of current stairs?", true, 'n'))
li = li2;
}
@@ -644,7 +644,8 @@ void annotate_level()
mpr( "Set level annotation to what? ", MSGCH_PROMPT );
char buf[77];
- cancelable_get_line( buf, sizeof(buf) );
+ if (cancelable_get_line( buf, sizeof(buf) ))
+ return;
if (strlen(buf) == 0)
{