summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 7bb4f2b803..f45762c9b9 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -2114,10 +2114,10 @@ bool vitrify_area(int radius)
// This hinges on clear wall types having the same order as non-clear ones!
const int clear_plus = DNGN_CLEAR_ROCK_WALL - DNGN_ROCK_WALL;
bool something_happened = false;
- for ( int x = X_BOUND_1; x <= X_BOUND_2; ++x )
- for ( int y = Y_BOUND_1; y <= Y_BOUND_2; ++y )
+ for (int x = X_BOUND_1; x <= X_BOUND_2; ++x)
+ for (int y = Y_BOUND_1; y <= Y_BOUND_2; ++y)
{
- if ( distance(x,y,you.x_pos,you.y_pos) < radius2 )
+ if (distance(x,y,you.x_pos,you.y_pos) < radius2)
{
dungeon_feature_type grid = grd[x][y];