summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-10 06:40:52 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-10 06:40:52 +0000
commit31d4e1ba720aab96fe941a684822444b88d63f1d (patch)
tree5f48e0723d35fcddc12cdbfcdf9d96e06537f314 /crawl-ref/source/dungeon.h
parent05117a738c42a28185520d8735cb1bab12dc50a6 (diff)
downloadcrawl-ref-31d4e1ba720aab96fe941a684822444b88d63f1d.tar.gz
crawl-ref-31d4e1ba720aab96fe941a684822444b88d63f1d.zip
Fixed bug with return type of levitate() (hopefully without adding new bugs.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1278 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dungeon.h')
-rw-r--r--crawl-ref/source/dungeon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dungeon.h b/crawl-ref/source/dungeon.h
index 9772d19118..576b89059e 100644
--- a/crawl-ref/source/dungeon.h
+++ b/crawl-ref/source/dungeon.h
@@ -114,8 +114,8 @@ bool place_specific_trap(unsigned char spec_x, unsigned char spec_y,
unsigned char spec_type);
void place_spec_shop(int level_number, unsigned char shop_x,
- unsigned char shop_y, unsigned char force_s_type,
- bool representative = false );
+ unsigned char shop_y, unsigned char force_s_type,
+ bool representative = false );
bool unforbidden(const coord_def &c, const dgn_region_list &forbidden);