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-04-19 11:19:35 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-19 11:19:35 +0000
commit811db79a78d57a056981f56879af1dcc5e3c6eea (patch)
treeb4f524f47017155c22e2899c956ea80f68b221cb /crawl-ref/source/initfile.cc
parentbea5c32865b925d7c2e994554cfb66853242d63a (diff)
downloadcrawl-ref-811db79a78d57a056981f56879af1dcc5e3c6eea.tar.gz
crawl-ref-811db79a78d57a056981f56879af1dcc5e3c6eea.zip
Rename show_turns to show_gold_turns, and modify the documentation
accordingly. Also, don't print that "bringing you to a total of ..." message if you previously had no gold, and change some ints to unsigned to quiet some compiler warnings. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4361 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index c5695b7577..8ce4243eca 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -629,8 +629,8 @@ void game_options::reset_options()
autoprayer_on = false;
show_more_prompt = true;
- show_turns = false;
- show_beam = false;
+ show_gold_turns = false;
+ show_beam = false;
use_old_selection_order = false;
prev_race = 0;
@@ -1973,7 +1973,7 @@ void game_options::read_option_line(const std::string &str, bool runscript)
save_dir = field;
}
#endif
- else BOOL_OPTION(show_turns);
+ else BOOL_OPTION(show_gold_turns);
else BOOL_OPTION(show_beam);
#ifndef SAVE_DIR_PATH
else if (key == "morgue_dir")