summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-17 04:26:10 +0000
committerpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-17 04:26:10 +0000
commit13f241a701731edada395fc273b1a4eba30e9d57 (patch)
tree9a1179de2ac038decf03589896f4097d588c2f34 /crawl-ref/source/acr.cc
parent89ed548fe59c67cdeee3d0ae641b327a1acf8310 (diff)
downloadcrawl-ref-13f241a701731edada395fc273b1a4eba30e9d57.tar.gz
crawl-ref-13f241a701731edada395fc273b1a4eba30e9d57.zip
Some yesno standardisation. Some yesno prompts had a trailing space, some didn't.
Now all of them do (but it's applied in yesno(), so it's easy to get rid of). Also, "anyways" -> "anyway". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3682 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 11512ecb80..b9596abd09 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -426,7 +426,7 @@ static void handle_wizard_command( void )
mpr( "If you continue, your game will not be scored!", MSGCH_WARN );
#endif
- if (!yesno( "Do you really want to enter wizard mode? ", false, 'n' ))
+ if (!yesno( "Do you really want to enter wizard mode?", false, 'n' ))
return;
you.wizard = true;
@@ -987,7 +987,7 @@ static void handle_wizard_command( void )
if (testbits(env.level_flags, LFLAG_NOT_MAPPABLE)
|| testbits(get_branch_flags(), BFLAG_NOT_MAPPABLE))
{
- if (!yesno("Force level to be mappable? ", true, 'n'))
+ if (!yesno("Force level to be mappable?", true, 'n'))
{
canned_msg( MSG_OK );
return;
@@ -2269,7 +2269,7 @@ void process_command( command_type cmd )
#endif
case CMD_SAVE_GAME:
- if (yesno("Save game and exit? ", true, 'n'))
+ if (yesno("Save game and exit?", true, 'n'))
save_game(true);
break;
@@ -3956,7 +3956,7 @@ static void move_player(int move_x, int move_y)
|| is_sanctuary(mon->x, mon->y))
{
snprintf(info, INFO_SIZE,
- "Really attack %s, despite your sanctuary? ",
+ "Really attack %s, despite your sanctuary?",
mon->name(DESC_NOCAP_THE).c_str());
if (!yesno(info, true, 'n'))