summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-16 21:46:11 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-16 21:51:49 +0100
commitb4544535b4cba05e494c17d9b06d18ae36edcdde (patch)
tree5910a4baded57b9e6122313cf531210f6b2db40e /crawl-ref/source/directn.cc
parent5e4363aeaf2796ee28133734fe1729aceb311fe4 (diff)
downloadcrawl-ref-b4544535b4cba05e494c17d9b06d18ae36edcdde.tar.gz
crawl-ref-b4544535b4cba05e494c17d9b06d18ae36edcdde.zip
Move tutorial state out of Options.
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 8230db5e3e..fc9df131e7 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3384,7 +3384,7 @@ static void _describe_cell(const coord_def& where, bool in_range)
#if DEBUG_DIAGNOSTICS
debug_stethoscope(mgrd(where));
#endif
- if (Options.tutorial_left && tutorial_monster_interesting(mon))
+ if (Tutorial.tutorial_left && tutorial_monster_interesting(mon))
{
std::string msg;
#ifdef USE_TILE
@@ -3471,7 +3471,7 @@ static void _describe_cell(const coord_def& where, bool in_range)
marker.c_str(),
traveldest.c_str());
#else
- if (Options.tutorial_left && tutorial_pos_interesting(where.x, where.y))
+ if (Tutorial.tutorial_left && tutorial_pos_interesting(where.x, where.y))
{
#ifdef USE_TILE
feature_desc += " (<w>Right-click</w> for more information.)";