summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-08 08:33:31 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-08 08:33:31 +0000
commitb0dfd61493f734d242fcd40d7fb57d38be6cc80a (patch)
treedcc8f12e790cc75377f2294bef4bbb56b5a53147 /crawl-ref/source/initfile.cc
parent081fdf88cc165fd264793b8180c5d10314615c41 (diff)
downloadcrawl-ref-b0dfd61493f734d242fcd40d7fb57d38be6cc80a.tar.gz
crawl-ref-b0dfd61493f734d242fcd40d7fb57d38be6cc80a.zip
menu_colour should not be lowercased.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@802 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index c4923c1ef7..f00b30b004 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -1283,7 +1283,8 @@ void game_options::read_option_line(const std::string &str, bool runscript)
&& key != "note_items" && key != "autoinscribe"
&& key != "note_monsters" && key != "note_messages"
&& key.find("cset") != 0 && key != "dungeon"
- && key != "feature" && key != "fire_items_start")
+ && key != "feature" && key != "fire_items_start"
+ && key != "menu_colour" && key != "menu_color")
{
tolower_string( field );
}