summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-08 01:00:51 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-08 01:00:51 +0000
commitb49b73d9b3736c7dad367e7f61c78ca35787f428 (patch)
tree90b20c0aa3aef6ca3f37a367c6009221b0b14e25 /crawl-ref/source/direct.h
parent7fd9d9a617f65db7695d4858deed6f2cc01fd72c (diff)
downloadcrawl-ref-b49b73d9b3736c7dad367e7f61c78ca35787f428.tar.gz
crawl-ref-b49b73d9b3736c7dad367e7f61c78ca35787f428.zip
Lots and lots of type safety.
Caught a bug in the definition of shadows (isn't it lucky that BLACK == MST_NO_SPELLS?) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1788 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/direct.h')
-rw-r--r--crawl-ref/source/direct.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/direct.h b/crawl-ref/source/direct.h
index 7b14bb3e00..f8be4357a7 100644
--- a/crawl-ref/source/direct.h
+++ b/crawl-ref/source/direct.h
@@ -23,8 +23,8 @@
* spells2 - spells3 - spells4
* *********************************************************************** */
-void direction( struct dist &moves, targeting_type restricts = DIR_NONE,
- int mode = TARG_ANY, bool just_looking = false,
+void direction( dist &moves, targeting_type restricts = DIR_NONE,
+ targ_mode_type mode = TARG_ANY, bool just_looking = false,
const char *prompt = NULL );
bool in_los_bounds(int x, int y);