summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-05 22:11:20 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-05 22:11:20 +0000
commitaff54353f3a6bbb21d059914413581d3ef324bbb (patch)
tree10dc9569d72d0f212c88e78bf4fdc1a13fd33e5c /crawl-ref/source/acr.cc
parent4f824cd14b7f0d6f53c5a5f28ff8676bd35f261c (diff)
downloadcrawl-ref-aff54353f3a6bbb21d059914413581d3ef324bbb.tar.gz
crawl-ref-aff54353f3a6bbb21d059914413581d3ef324bbb.zip
Forward-port applicable fixes from 0.5 r9896 to trunk.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9897 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index d7b74d716b..f014e47b40 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -267,6 +267,8 @@ int main( int argc, char *argv[] )
// Warn player about their weapon, if unsuitable.
wield_warning(false);
+ _prep_input();
+
if (game_start)
{
if (Options.tutorial_left)
@@ -274,9 +276,7 @@ int main( int argc, char *argv[] )
_take_starting_note();
}
else
- learned_something_new(TUT_LOAD_SAVED_GAME);
-
- _prep_input();
+ tutorial_load_game();
// Catch up on any experience levels we did not assign last time. This
// can happen if Crawl sees SIGHUP while it is waiting for the player
@@ -422,9 +422,6 @@ static void _startup_tutorial()
// Don't allow triggering at game start.
Options.tut_just_triggered = true;
- // Print stats and everything.
- _prep_input();
-
msg::streams(MSGCH_TUTORIAL)
<< "Press any key to start the tutorial intro, or Escape to skip it."
<< std::endl;