summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 82fc5968ab..3074192956 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -224,18 +224,6 @@ void clear_envmap_grid( int x, int y )
env.map_col[x - 1][y - 1].clear();
}
-void clear_envmap( void )
-{
- for (int i = 0; i < GXM; i++)
- {
- for (int j = 0; j < GYM; j++)
- {
- env.map[i][j] = 0;
- env.map_col[i][j].clear();
- }
- }
-}
-
#if defined(WIN32CONSOLE) || defined(DOS)
static unsigned colflag2brand(int colflag)
{