summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-01 22:43:46 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-01 22:43:46 +0000
commit2f502ad2e18856b2207756b98d2b54fc6e5764b3 (patch)
treeb107630c10dc120a11a9f6bb3578b9b11c3de416 /crawl-ref/source/initfile.cc
parent6abca99d684429a8d909260cec1f3c0f76f8ecc7 (diff)
downloadcrawl-ref-2f502ad2e18856b2207756b98d2b54fc6e5764b3.tar.gz
crawl-ref-2f502ad2e18856b2207756b98d2b54fc6e5764b3.zip
FR 2026227: Make $ list current gold.
FR 2027307: Use menu colours for shops, with an option to turn it off to get the striped menu again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6750 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 55e6e64aac..3d09caef7d 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -912,6 +912,7 @@ void game_options::reset_options()
sound_mappings.clear();
menu_colour_mappings.clear();
menu_colour_prefix_class = false;
+ menu_colour_shops = true;
message_colour_mappings.clear();
drop_filter.clear();
map_file_name.clear();
@@ -2745,6 +2746,8 @@ void game_options::read_option_line(const std::string &str, bool runscript)
}
else BOOL_OPTION(menu_colour_prefix_class);
else BOOL_OPTION_NAMED("menu_color_prefix_class", menu_colour_prefix_class);
+ else BOOL_OPTION(menu_colour_shops);
+ else BOOL_OPTION_NAMED("menu_color_shops", menu_colour_shops);
else if (key == "message_colour" || key == "message_color")
{
add_message_colour_mappings(field);