summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index a03bb0cc5b..802ad57cf1 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -115,11 +115,11 @@ void radius_iterator::step()
// Sweep L-R, U-D
location.x++;
- if ( location.x > maxx )
+ if (location.x > maxx)
{
location.x = minx;
location.y++;
- if ( location.y > maxy )
+ if (location.y > maxy)
iter_done = true;
}
}