summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-09 19:45:50 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-09 19:45:50 +0000
commit917bef7c3d30bd12dec1e817fda60d708f7e99a1 (patch)
treec34138f813fb5dc353124a7f4627ff68eeba033b /crawl-ref/source/newgame.cc
parent534738993b475aa21e603c82bb9d03ff92361646 (diff)
downloadcrawl-ref-917bef7c3d30bd12dec1e817fda60d708f7e99a1.tar.gz
crawl-ref-917bef7c3d30bd12dec1e817fda60d708f7e99a1.zip
* Allow 'Ctrl-T' as tutorial trigger (currently 'T').
* Allow choice of deck for Stack Five like for the other abilities. * Include revision in chardump. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9592 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 4f02c1060a..96a0c42bff 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -3217,7 +3217,7 @@ static void _enter_player_name(bool blankOK)
formatted_string::parse_string(
" If you've never been here before, you might want to try out" EOL
" the Dungeon Crawl tutorial. To do this, press "
- "<white>T</white> on the next" EOL
+ "<white>Ctrl-T</white> on the next" EOL
" screen.").display();
}
else
@@ -3794,7 +3794,7 @@ spec_query:
textcolor( WHITE );
cprintf("You must be new here!");
}
- cprintf(" (Press T to enter a tutorial.)");
+ cprintf(" (Press Ctrl-T to enter a tutorial.)");
cprintf(EOL EOL);
textcolor( CYAN );
cprintf("You can be: "
@@ -3950,7 +3950,7 @@ spec_query:
// These are handled specially as they _could_ be set
// using Options.race or prev_race.
- if (keyn == 'T') // easy to set in init.txt
+ if (keyn == CONTROL('T') || keyn == 'T') // easy to set in init.txt
return !pick_tutorial();
bool good_randrace = (keyn == '+');
@@ -4044,7 +4044,7 @@ job_query:
textcolor( WHITE );
cprintf("You must be new here!");
}
- cprintf(" (Press T to enter a tutorial.)");
+ cprintf(" (Press Ctrl-T to enter a tutorial.)");
cprintf(EOL EOL);
textcolor( CYAN );
@@ -4160,6 +4160,7 @@ job_query:
return (false);
}
case 'T':
+ case CONTROL('T'):
return pick_tutorial();
case '#':
good_random = true;