From b0dfd61493f734d242fcd40d7fb57d38be6cc80a Mon Sep 17 00:00:00 2001 From: haranp Date: Mon, 8 Jan 2007 08:33:31 +0000 Subject: 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 --- crawl-ref/source/initfile.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/initfile.cc') 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 ); } -- cgit v1.2.3-54-g00ecf