summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index e43b1633d7..f4a2b62621 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -7308,7 +7308,7 @@ static void _chequerboard( spec_room &sr, dungeon_feature_type target,
if (sr.br.x < sr.tl.x || sr.br.y < sr.tl.y)
return;
- for ( rectangle_iterator ri(sr.tl, sr.br); ri; ++ri )
+ for (rectangle_iterator ri(sr.tl, sr.br); ri; ++ri)
if (grd(*ri) == target)
grd(*ri) = ((ri->x + ri->y) % 2) ? floor2 : floor1;
}