summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-27 12:33:29 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-27 12:33:29 +0000
commitd6a80fc099249eb2e9d759b92e0e248e5a925256 (patch)
tree829bc3e9d7f3b52fa0c48f5ae9b63ca62e7fb6a1 /crawl-ref/source/acr.cc
parentc0a429f1bbb20357589acce9fba2b85306927bca (diff)
downloadcrawl-ref-d6a80fc099249eb2e9d759b92e0e248e5a925256.tar.gz
crawl-ref-d6a80fc099249eb2e9d759b92e0e248e5a925256.zip
remember_name was broken, fixed.
Colour overlays were not being rotated/mirrored, fixed. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2231 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 1419e6348b..2d35510bb4 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -224,10 +224,6 @@ int main( int argc, char *argv[] )
// now parse the args again, looking for everything else.
parse_args( argc, argv, false );
- // read the options the player used last time they created a new
- // character.
- read_startup_prefs();
-
if (Options.sc_entries != 0 || !SysEnv.scorefile.empty())
{
hiscores_print_all( Options.sc_entries, Options.sc_format );
@@ -3298,6 +3294,10 @@ static bool initialise(void)
{
Options.fixup_options();
+ // read the options the player used last time they created a new
+ // character.
+ read_startup_prefs();
+
you.symbol = '@';
you.colour = LIGHTGREY;