summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-30 15:31:14 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-30 15:31:14 +0000
commit3f99f1f82b88899852215c54dc2e111956094bd5 (patch)
tree30518807e3dad373bd7228118091245a2690efca /crawl-ref/source/command.cc
parent545034c7339efbe30c3ca89731979448345774a6 (diff)
downloadcrawl-ref-3f99f1f82b88899852215c54dc2e111956094bd5.tar.gz
crawl-ref-3f99f1f82b88899852215c54dc2e111956094bd5.zip
Update the rest of the files to the new documentation name.
Also add a preliminary tiles documentation with 'T' as a hotkey, re-add the readme on '!' after moving options_guide.txt to '&'. And now that the tutorial also allows inscriptions from viewing items, add an explanatory text for inscriptions. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3952 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc14
1 files changed, 11 insertions, 3 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index fdadcd010d..922ac5b504 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -637,10 +637,14 @@ struct help_file
help_file help_files[] = {
{ "crawl_manual.txt", '*', true },
+ { "../readme.txt", '!', false },
{ "aptitudes.txt", '%', false },
- { "readme.txt", '^', false },
+ { "quickstart.txt", '^', false },
{ "macros_guide.txt", '~', false },
- { "options_guide.txt", '!', false },
+ { "options_guide.txt", '&', false },
+#ifdef USE_TILE
+ { "tiles_help.txt", 'T', false },
+#endif
{ NULL, 0, false }
};
@@ -1335,12 +1339,16 @@ static void show_keyhelp_menu(const std::vector<formatted_string> &lines,
"aspect of Dungeon Crawl.\n"
"<w>?</w>: List of keys\n"
+ "<w>!</w>: Read Me!\n"
"<w>^</w>: Quickstart Guide\n"
"<w>:</w>: Browse character notes\n"
"<w>~</w>: Macros help\n"
- "<w>!</w>: Options help\n"
+ "<w>&</w>: Options help\n"
"<w>%</w>: Table of aptitudes\n"
"<w>/</w>: Lookup description\n"
+#ifdef USE_TILE
+ "<w>T</w>: Tiles key help\n"
+#endif
"<w>V</w>: Version information\n"
"<w>Home</w>: This screen\n",
true, true, cmdhelp_textfilter);