summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godmenu.cc
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2012-04-27 12:06:17 +0200
committerRaphael Langella <raphael.langella@gmail.com>2012-04-27 15:55:10 +0200
commite0f685857d49f798a287457f818855a09f30a98a (patch)
tree2c4fcc18947e54c544d0c65ea016a58e7e5504a9 /crawl-ref/source/godmenu.cc
parentc78c85aa5190ad7b26a729c5bded0dacd1784084 (diff)
downloadcrawl-ref-e0f685857d49f798a287457f818855a09f30a98a.tar.gz
crawl-ref-e0f685857d49f798a287457f818855a09f30a98a.zip
Make /?G display uppercase hotkey, but allow upper- and lowercase hotkeys
Diffstat (limited to 'crawl-ref/source/godmenu.cc')
-rw-r--r--crawl-ref/source/godmenu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/godmenu.cc b/crawl-ref/source/godmenu.cc
index 2408c1bfd0..a658a6e85f 100644
--- a/crawl-ref/source/godmenu.cc
+++ b/crawl-ref/source/godmenu.cc
@@ -18,7 +18,7 @@ GodMenuEntry::GodMenuEntry(god_type god_, bool long_name) :
hotkeys.push_back('1');
else
{
- //hotkeys.push_back(txt.at(0));
+ hotkeys.push_back(text.at(0));
hotkeys.push_back(tolower(text.at(0)));
}
int c = god_message_altar_colour(god);