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-07-11 19:13:10 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-11 19:13:10 +0000
commitcccab635940e7bd6c208cec945892f4ae6f2a1d4 (patch)
tree73d246c5e47e1db5fe5122161f3cd8e3890d5fe0 /crawl-ref/source/command.cc
parent82994f85ce2f3e079ba59abb86bb4716149d2bf0 (diff)
downloadcrawl-ref-cccab635940e7bd6c208cec945892f4ae6f2a1d4.tar.gz
crawl-ref-cccab635940e7bd6c208cec945892f4ae6f2a1d4.zip
Fix README.txt not being readable from the in-game help.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6504 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/command.cc')
-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);
}
}