From b4544535b4cba05e494c17d9b06d18ae36edcdde Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Mon, 16 Nov 2009 21:46:11 +0100 Subject: Move tutorial state out of Options. --- crawl-ref/source/directn.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/directn.cc') 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 += " (Right-click for more information.)"; -- cgit v1.2.3-54-g00ecf