summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-11 19:15:48 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-11 19:15:48 +0000
commit1e77f1d5c4621923e9943cf901e95058b18969e2 (patch)
treed3b304a666c702a0c18a69aa43edc0356cba55d9 /crawl-ref/source
parent20040af1f5ef00eb9eb2d61df3d5b31cdab804d9 (diff)
downloadcrawl-ref-1e77f1d5c4621923e9943cf901e95058b18969e2.tar.gz
crawl-ref-1e77f1d5c4621923e9943cf901e95058b18969e2.zip
And the same for 0.4: in-game access to README.txt.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6505 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/command.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 2b46088a8d..eff2e4047c 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -819,7 +819,7 @@ struct help_file
help_file help_files[] = {
{ "crawl_manual.txt", '*', true },
- { "../readme.txt", '!', false },
+ { "../README.txt", '!', false },
{ "aptitudes.txt", '%', false },
{ "quickstart.txt", '^', false },
{ "macros_guide.txt", '~', false },
@@ -1645,16 +1645,16 @@ static void _show_keyhelp_menu(const std::vector<formatted_string> &lines,
if (!fp)
continue;
- // put in a separator
+ // Put in a separator...
cmd_help.add_item_string("");
cmd_help.add_item_string(std::string(get_number_of_cols()-1,'='));
cmd_help.add_item_string("");
- // and the file itself
+ // ...and the file itself.
_add_file_to_scroller(fp, cmd_help, help_files[i].hotkey,
help_files[i].auto_hotkey);
- // done with this file
+ // Done with this file.
fclose(fp);
}
}