summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 03:16:13 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 03:16:13 +0000
commit0070374b59706ed1f7151c4aecfba071a62f93a1 (patch)
tree51e3e837abb696d1bf6f8b9da28ed1779ddfddb6 /crawl-ref/source/stuff.cc
parente7a0632492ce812435f649766cbdc8c6d80f4111 (diff)
downloadcrawl-ref-0070374b59706ed1f7151c4aecfba071a62f93a1.tar.gz
crawl-ref-0070374b59706ed1f7151c4aecfba071a62f93a1.zip
Fix breakage.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5933 c06c8d41-db1a-0410-9941-cceddc491573
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 a261bdbf06..369e15ea04 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -1493,8 +1493,8 @@ int fuzz_value(int val, int lowfuzz, int highfuzz, int naverage)
// Returns 0 if the point is not near stairs.
// Returns 1 if the point is near unoccupied stairs.
// Returns 2 if the point is near player-occupied stairs.
-int near_stairs(const coord_def &p, int max_dist, bool allow_hatches,
- dungeon_char_type &stair_type, branch_type *branch)
+int near_stairs(const coord_def &p, int max_dist,
+ dungeon_char_type &stair_type, branch_type &branch)
{
coord_def inc;