summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index f0aabd9cc0..0a3e4d3529 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -271,8 +271,8 @@ static job_type _get_tutorial_job(unsigned int type)
// position into normal closed doors.
void tutorial_zap_secret_doors()
{
- for ( radius_iterator ri(you.pos(), 10, true, false); ri; ++ri )
- if ( grd(*ri) == DNGN_SECRET_DOOR )
+ for (radius_iterator ri(you.pos(), 10, true, false); ri; ++ri)
+ if (grd(*ri) == DNGN_SECRET_DOOR)
grd(*ri) = DNGN_CLOSED_DOOR;
}