summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-18 18:33:25 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-18 19:46:32 +0100
commitbd992184d2956c8b32ac4c99cb3dd6d4afe41f4d (patch)
tree1df6886261eb4e5eb4cfd375755e74fcea1c1e44 /crawl-ref/source/macro.h
parentdd710175cac03021ba863a60be3875dc2eded125 (diff)
downloadcrawl-ref-bd992184d2956c8b32ac4c99cb3dd6d4afe41f4d.tar.gz
crawl-ref-bd992184d2956c8b32ac4c99cb3dd6d4afe41f4d.zip
Display real keys for commands in the Tiles' tooltip.
Diffstat (limited to 'crawl-ref/source/macro.h')
-rw-r--r--crawl-ref/source/macro.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/macro.h b/crawl-ref/source/macro.h
index c2d4187a48..4851248866 100644
--- a/crawl-ref/source/macro.h
+++ b/crawl-ref/source/macro.h
@@ -96,7 +96,8 @@ KeymapContext context_for_command(command_type cmd);
void bind_command_to_key(command_type cmd, int key);
std::string command_to_string(command_type cmd);
-void insert_commands(std::string &desc, std::vector<command_type> cmds);
+void insert_commands(std::string &desc, std::vector<command_type> cmds,
+ bool add_eol = true);
void insert_commands(std::string &desc, const int first, ...);
void list_all_commands(std::string &commands);
#endif