summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-delve.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-08-29 11:35:56 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-08-29 11:35:56 +0200
commitde2d8d3d7e7350952d0b027605bd3a59f74456ed (patch)
tree6298638d21cb9a6619eea3932159068b4e6f272d /crawl-ref/source/dgn-delve.h
parentc5220e3641fa05e23f2820ac5d91a16a4ebc9f29 (diff)
downloadcrawl-ref-de2d8d3d7e7350952d0b027605bd3a59f74456ed.tar.gz
crawl-ref-de2d8d3d7e7350952d0b027605bd3a59f74456ed.zip
Allow delve() to operate on both grd or map_lines.
Diffstat (limited to 'crawl-ref/source/dgn-delve.h')
-rw-r--r--crawl-ref/source/dgn-delve.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dgn-delve.h b/crawl-ref/source/dgn-delve.h
index db91e47395..c10b17c039 100644
--- a/crawl-ref/source/dgn-delve.h
+++ b/crawl-ref/source/dgn-delve.h
@@ -1,7 +1,7 @@
#ifndef DGN_DELVE_H
#define DGN_DELVE_H
-void layout_delve(int ngb_min = 2, int ngb_max = 3,
- int connchance = 0, int cellnum = -1, int top = 125);
+void delve(map_lines *map, int ngb_min = 2, int ngb_max = 3,
+ int connchance = 0, int cellnum = -1, int top = 125);
#endif