summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/show.cc')
-rw-r--r--crawl-ref/source/show.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/show.cc b/crawl-ref/source/show.cc
index 9a51c6e961..1c9a62dbf3 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -216,10 +216,10 @@ void show_def::init()
grid.init(show_type());
backup.init(show_type());
- const coord_def &ul = crawl_view.glos1; // Upper left
- const coord_def &lr = crawl_view.glos2; // Lower right
+ const coord_def &ul = crawl_view.glos1; // Upper left
+ const coord_def &lr = crawl_view.glos2; // Lower right
- for (rectangle_iterator ri(ul, lr); ri; ++ri)
- if (observe_cell(*ri))
- update_at(*ri, grid2show(*ri));
+ for (rectangle_iterator ri(ul, lr); ri; ++ri)
+ if (observe_cell(*ri))
+ update_at(*ri, grid2show(*ri));
}