From edec5639b9479540f10d1c1bc716fc75977f11af Mon Sep 17 00:00:00 2001 From: dshaligram Date: Fri, 8 Jun 2007 15:00:47 +0000 Subject: Removed one line from the targeting prompt; should make it less -more- prone. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1558 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/travel.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'crawl-ref/source/travel.cc') diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc index 6e6f817208..00fb61a5ce 100644 --- a/crawl-ref/source/travel.cc +++ b/crawl-ref/source/travel.cc @@ -1833,16 +1833,16 @@ static int prompt_travel_branch(int prompt_flags) if (allow_waypoints) { if (waypoint_list) - segs.push_back("[*] lists branches"); + segs.push_back("* - list branches"); else if (waycount) - segs.push_back("[*] lists waypoints"); + segs.push_back("* - list waypoints"); } if (*trans_travel_dest && remember_targ) segs.push_back( - make_stringf("[Enter] for %s", trans_travel_dest) ); + make_stringf("Enter - %s", trans_travel_dest) ); - segs.push_back("[?] for help"); + segs.push_back("? - help"); shortcuts += comma_separated_line(segs.begin(), segs.end(), ", ", ", "); @@ -2009,7 +2009,7 @@ static level_id prompt_travel_depth(const level_id &id) { mesclr(true); mprf(MSGCH_PROMPT, "What level of %s? " - "(default %d, [?] for help) ", branches[branch].longname, depth); + "(default %d, ? - help) ", branches[branch].longname, depth); char buf[100]; const int response = -- cgit v1.2.3-54-g00ecf